Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-22 09:55:53

0001 //  Boost string_algo library config.hpp header file  ---------------------------//
0002 
0003 //  Copyright Pavol Droba 2002-2003.
0004 //
0005 // Distributed under the Boost Software License, Version 1.0.
0006 //    (See accompanying file LICENSE_1_0.txt or copy at
0007 //          http://www.boost.org/LICENSE_1_0.txt)
0008 
0009 //  See http://www.boost.org/ for updates, documentation, and revision history.
0010 
0011 #ifndef BOOST_STRING_CONFIG_HPP
0012 #define BOOST_STRING_CONFIG_HPP
0013 
0014 #include <boost/config.hpp>
0015 #include <boost/detail/workaround.hpp>
0016 
0017 #ifdef BOOST_STRING_DEDUCED_TYPENAME
0018 #   error "macro already defined!"
0019 #endif
0020 
0021 #define BOOST_STRING_TYPENAME BOOST_DEDUCED_TYPENAME
0022 
0023 // Metrowerks workaround
0024 #if BOOST_WORKAROUND(__MWERKS__, <= 0x3003) // 8.x
0025 #pragma parse_func_templ off
0026 #endif
0027 
0028 #endif  // BOOST_STRING_CONFIG_HPP