Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:40:50

0001 // Copyright Abel Sinkovics (abel@sinkovics.hu)  2013.
0002 // Distributed under the Boost Software License, Version 1.0.
0003 //    (See accompanying file LICENSE_1_0.txt or copy at
0004 //          http://www.boost.org/LICENSE_1_0.txt)
0005 
0006 #include <boost/metaparse/v1/string.hpp>
0007 
0008 // Include guard is after including v1/string.hpp to make it re-includable
0009 #ifndef BOOST_METAPARSE_STRING_HPP
0010 #define BOOST_METAPARSE_STRING_HPP
0011 
0012 #include <boost/metaparse/string_tag.hpp>
0013 
0014 #ifdef BOOST_METAPARSE_STRING
0015 #  error BOOST_METAPARSE_STRING already defined
0016 #endif
0017 #define BOOST_METAPARSE_STRING BOOST_METAPARSE_V1_STRING
0018 
0019 namespace boost
0020 {
0021   namespace metaparse
0022   {
0023     using v1::string;
0024   }
0025 }
0026 
0027 #endif
0028