mirror of
https://github.com/boostorg/callable_traits.git
synced 2026-02-19 02:12:17 +00:00
using _t aliases to parallel <type_traits> header
This commit is contained in:
@@ -21,7 +21,7 @@ int main() {
|
||||
|
||||
{
|
||||
using f = sig<N<0>, N<1>, N<2>, N<3>, N<4>>;
|
||||
using test = ct::push_back<f, int&, char*>;
|
||||
using test = ct::args_push_back_t<f, int&, char*>;
|
||||
using expect = sig<N<0>, N<1>, N<2>, N<3>, N<4>, int&, char*>;
|
||||
CT_ASSERT(std::is_same<test, expect>::value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user