OSDN Git Service

gcc/c-family/
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / include / std / type_traits
index cde741e..a5a62d6 100644 (file)
@@ -192,6 +192,12 @@ namespace std
     : public integral_constant<bool, __is_pod(_Tp)>
     { };
 
+  /// is_literal_type
+  template<typename _Tp>
+    struct is_literal_type
+    : public integral_constant<bool, __is_literal_type(_Tp)>
+    { };
+
   template<typename _Tp>
     typename add_rvalue_reference<_Tp>::type declval() noexcept;