mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-13 00:26:35 +00:00
23 lines
No EOL
902 B
C++
23 lines
No EOL
902 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)
|
|
|
|
HEADER GUARDS INTENTIONALLY OMITTED
|
|
DO NOT INCLUDE THIS HEADER DIRECTLY
|
|
*/
|
|
|
|
#define BOOST_CLBL_TRTS_INCLUDE_TRANSACTION_SAFE
|
|
#define BOOST_CLBL_TRTS_IS_TRANSACTION_SAFE std::false_type
|
|
#include <boost/callable_traits/detail/unguarded/function_2.hpp>
|
|
#undef BOOST_CLBL_TRTS_INCLUDE_TRANSACTION_SAFE
|
|
#undef BOOST_CLBL_TRTS_IS_TRANSACTION_SAFE
|
|
|
|
#ifdef BOOST_CLBL_TRTS_ENABLE_TRANSACTION_SAFE
|
|
#define BOOST_CLBL_TRTS_IS_TRANSACTION_SAFE std::true_type
|
|
#define BOOST_CLBL_TRTS_INCLUDE_TRANSACTION_SAFE transaction_safe
|
|
#include <boost/callable_traits/detail/unguarded/function_2.hpp>
|
|
#undef BOOST_CLBL_TRTS_INCLUDE_TRANSACTION_SAFE
|
|
#undef BOOST_CLBL_TRTS_IS_TRANSACTION_SAFE
|
|
#endif // #ifdef BOOST_CLBL_TRTS_ENABLE_TRANSACTION_SAFE
|