1 // Copyright (c) 2003-2008 Matthias Christian Schabel 2 // Copyright (c) 2007-2008 Steven Watanabe 3 // Copyright (c) 2010 Joel de Guzman 4 // Copyright (c) 2010 Hartmut Kaiser 5 // Copyright (c) 2009 Francois Barel 6 // 7 // Distributed under the Boost Software License, Version 1.0. (See 8 // accompanying file LICENSE_1_0.txt or copy at 9 // http://www.boost.org/LICENSE_1_0.txt) 10 11 #define BOOST_SPIRIT_STRINGIZE_IMPL(x) #x 12 #define BOOST_SPIRIT_STRINGIZE(x) BOOST_SPIRIT_STRINGIZE_IMPL(x) 13 14 #define BOOST_SPIRIT_HEADER BOOST_SPIRIT_STRINGIZE(BOOST_SPIRIT_HEADER_NAME) 15 16 #include BOOST_SPIRIT_HEADER 17 #include BOOST_SPIRIT_HEADER 18 main()19int main() 20 { 21 return 0; 22 } 23