Home | History | Annotate | Download | only in PCH
      1 // Header for PCH test cxx-traits.cpp
      2 
      3 template<typename _Tp>
      4 struct __is_pod {
      5   enum { __value };
      6 };
      7 
      8 template<typename _Tp>
      9 struct __is_empty {
     10   enum { __value };
     11 };
     12