blob: a02f00926e5d9e72f5e3078687421b1aa74f1276 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/*<-
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>
#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);
//sanity check
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
|