#include <boost/callable_traits/detail/config.hpp>
#ifndef BOOST_CLBL_TRTS_ENABLE_TRANSACTION_SAFE
int main(){}
#else
#include <boost/callable_traits/add_transaction_safe.hpp>
#include "test.hpp"
template<typename Safe, typename NotSafe>
void test() {
CT_ASSERT(std::is_same<Safe, TRAIT(add_transaction_safe, NotSafe)>::value);
CT_ASSERT(!std::is_same<Safe, NotSafe>::value);
}
#define TEST_TRANSACTION_SAFE(not_safe) test<not_safe transaction_safe, not_safe>()
int main() {
TEST_TRANSACTION_SAFE(int(int) &);
TEST_TRANSACTION_SAFE(int(*)(int));
TEST_TRANSACTION_SAFE(int(int, ...) &&);
TEST_TRANSACTION_SAFE(int(*)(int, ...));
struct foo;
TEST_TRANSACTION_SAFE(int(foo::*)(int));
TEST_TRANSACTION_SAFE(int(foo::*)(int) const);
TEST_TRANSACTION_SAFE(int(foo::*)(int, ...));
TEST_TRANSACTION_SAFE(int(foo::*)(int, ...) volatile);
}
#endif