/*<- Copyright (c) 2016 Barrett Adair Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) ->*/ #include #ifdef BOOST_CLBL_TRTS_DISABLE_ABOMINABLE_FUNCTIONS int main(){ return 0; } #else //[ args #include #include #include namespace ct = boost::callable_traits; template void test(){ using args_t = ct::args_t; static_assert(std::is_same::value, ""); } int main() { { auto lamda = [](int, float&, const char*){}; using lam = decltype(lamda); using expect = std::tuple; test(); } { struct foo; using pmf = void(foo::*)(int, float&, const char*); using expect = std::tuple; test(); } { using function_ptr = void(*)(int, float&, const char*); using expect = std::tuple; test(); } { using function_ref = void(&)(int, float&, const char*); using expect = std::tuple; test(); } { using function = void(int, float&, const char*); using expect = std::tuple; test(); } { using abominable = void(int, float&, const char*) const; using expect = std::tuple; test(); } } //] #endif //#ifdef BOOST_CLBL_TRTS_DISABLE_ABOMINABLE_FUNCTIONS