test.cpp 643 B

12345678910111213141516171819202122
  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. #define BOOST_SPIRIT_STRINGIZE_IMPL(x) #x
  11. #define BOOST_SPIRIT_STRINGIZE(x) BOOST_SPIRIT_STRINGIZE_IMPL(x)
  12. #define BOOST_SPIRIT_HEADER BOOST_SPIRIT_STRINGIZE(BOOST_SPIRIT_HEADER_NAME)
  13. #include BOOST_SPIRIT_HEADER
  14. #include BOOST_SPIRIT_HEADER
  15. int main()
  16. {
  17. return 0;
  18. }