type_traits.h | 83 // enable_if_c - Enable/disable a template based on a metafunction 85 struct enable_if_c { struct in namespace:llvm 89 template<typename T> struct enable_if_c<false, T> { }; struct in namespace:llvm 93 struct enable_if : public enable_if_c<Cond::value, T> { };
|