using _t aliases to parallel <type_traits> header

This commit is contained in:
badair
2016-06-01 21:49:51 -05:00
parent 50bf51af57
commit 0c9ecb7f27
114 changed files with 927 additions and 867 deletions

View File

@@ -20,7 +20,7 @@ struct foo;
template<typename T, typename Expect>
void test() {
using U = ct::remove_member_pointer<T>;
using U = ct::remove_member_pointer_t<T>;
static_assert(std::is_same<Expect, U>{}, "");
}