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

@@ -21,7 +21,7 @@ int main() {
{
using f = sig<N<0>, N<1>, N<2>, N<3>, N<4>>;
using test = ct::push_front<f, int, char>;
using test = ct::args_push_front_t<f, int, char>;
using expect = sig<int, char, N<0>, N<1>, N<2>, N<3>, N<4>>;
CT_ASSERT(std::is_same<test, expect>::value);
}