| 1 | |
| 2 | // Copyright (C) 2012 Lorenzo Caminiti |
| 3 | // Distributed under the Boost Software License, Version 1.0 |
| 4 | // (see accompanying file LICENSE_1_0.txt or a copy at |
| 5 | // http://www.boost.org/LICENSE_1_0.txt) |
| 6 | // Home at http://www.boost.org/libs/scope_exit |
| 7 | |
| 8 | #ifndef NOVA_HPP_ |
| 9 | #define NOVA_HPP_ |
| 10 | |
| 11 | #include <boost/config.hpp> |
| 12 | |
| 13 | // WARNING: This file must be included first in each compilation unit. |
| 14 | |
| 15 | // Force no variadic macros but avoiding macro redefinition warning/error. |
| 16 | #ifndef BOOST_NO_CXX11_VARIADIC_MACROS |
| 17 | # define BOOST_NO_CXX11_VARIADIC_MACROS |
| 18 | #endif |
| 19 | |
| 20 | #endif // #include guard |
| 21 | |
| 22 | |