blob: 8b62002789d6f829294534f14ad2ded9c97c1b69 [file] [log] [blame]
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +00001// Header for PCH test cxx-traits.cpp
2
3template<typename _Tp>
4struct __is_pod {
5 enum { __value };
6};
7
8template<typename _Tp>
9struct __is_empty {
10 enum { __value };
11};
Douglas Gregor4ca8ac22012-02-24 07:38:34 +000012
13template<typename T, typename ...Args>
14struct is_trivially_constructible {
15 static const bool value = __is_trivially_constructible(T, Args...);
16};