1 /*============================================================================= 2 Copyright (c) 2017 Nikita Kniazev 3 http://spirit.sourceforge.net/ 4 5 Use, modification and distribution is subject to the Boost Software 6 License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 7 http://www.boost.org/LICENSE_1_0.txt) 8 =============================================================================*/ 9 10 // Spirit should not include any Boost.Thread header until user explicitly 11 // requested threadsafe support with BOOST_SPIRIT_THREADSAFE defined. 12 13 #undef BOOST_SPIRIT_THREADSAFE 14 #ifndef BOOST_DISABLE_THREADS 15 # define BOOST_DISABLE_THREADS 16 #endif 17 #include <boost/spirit/include/classic.hpp> 18 main()19int main() { return 0; } 20