23 lines
539 B
C++
23 lines
539 B
C++
|
/*<-
|
||
|
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 <boost/callable_traits/detail/config.hpp>
|
||
|
|
||
|
//[ class_of
|
||
|
#include <type_traits>
|
||
|
#include <boost/callable_traits/class_of.hpp>
|
||
|
|
||
|
namespace ct = boost::callable_traits;
|
||
|
|
||
|
struct foo;
|
||
|
|
||
|
static_assert(std::is_same<foo, ct::class_of_t<int(foo::*)()>>::value, "");
|
||
|
static_assert(std::is_same<foo, ct::class_of_t<int foo::*>>::value, "");
|
||
|
|
||
|
int main() {}
|
||
|
//]
|