string.hpp 679 B

12345678910111213141516171819202122232425262728
  1. // Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
  2. // Distributed under the Boost Software License, Version 1.0.
  3. // (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. #include <boost/metaparse/v1/string.hpp>
  6. // Include guard is after including v1/string.hpp to make it re-includable
  7. #ifndef BOOST_METAPARSE_STRING_HPP
  8. #define BOOST_METAPARSE_STRING_HPP
  9. #include <boost/metaparse/string_tag.hpp>
  10. #ifdef BOOST_METAPARSE_STRING
  11. # error BOOST_METAPARSE_STRING already defined
  12. #endif
  13. #define BOOST_METAPARSE_STRING BOOST_METAPARSE_V1_STRING
  14. namespace boost
  15. {
  16. namespace metaparse
  17. {
  18. using v1::string;
  19. }
  20. }
  21. #endif