/*<- 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 //[ function_type #include #include namespace ct = boost::callable_traits; template void test(){ // this example shows how boost::callable_traits::function_type_t // bevaves consistently for many different types using type = ct::function_type_t; using expect = void(int, float&, const char*); static_assert(std::is_same{}, ""); } int main() { auto lamda = [](int, float&, const char*){}; using lam = decltype(lamda); test(); using function_ptr = void(*)(int, float&, const char*); test(); using function_ref = void(&)(int, float&, const char*); test(); using function = void(int, float&, const char*); test(); using abominable = void(int, float&, const char*) const; test(); } //] #endif //#ifdef BOOST_CLBL_TRTS_DISABLE_ABOMINABLE_FUNCTIONS