Searched defs:is_void (Results 1 – 3 of 3) sorted by relevance
17 struct is_void : public false_type {}; struct19 template<> struct is_void<void> : public true_type {}; struct20 template<> struct is_void<const void> : public true_type{}; struct21 template<> struct is_void<const volatile void> : public true_type{}; struct22 template<> struct is_void<volatile void> : public true_type{}; struct
27 is_void struct29 static bool const value=false;34 is_void<void> struct36 static bool const value=true;
504 struct is_void struct