// Header for PCH test cxx-traits.cpp template struct __is_pod { enum { __value }; }; template struct __is_empty { enum { __value }; }; template struct is_trivially_constructible { static const bool value = __is_trivially_constructible(T, Args...); };