source: NonGTP/Boost/boost/algorithm/string/config.hpp @ 857

Revision 857, 835 bytes checked in by igarcia, 18 years ago (diff)
Line 
1//  Boost string_algo library config.hpp header file  ---------------------------//
2
3//  Copyright Pavol Droba 2002-2003. Use, modification and
4//  distribution is subject to the Boost Software License, Version
5//  1.0. (See accompanying file LICENSE_1_0.txt or copy at
6//  http://www.boost.org/LICENSE_1_0.txt)
7
8//  See http://www.boost.org for updates, documentation, and revision history.
9
10#ifndef BOOST_STRING_CONFIG_HPP
11#define BOOST_STRING_CONFIG_HPP
12
13#include <boost/config.hpp>
14#include <boost/detail/workaround.hpp>
15
16#ifdef BOOST_STRING_DEDUCED_TYPENAME
17#   error "macro already defined!"
18#endif
19
20#define BOOST_STRING_TYPENAME BOOST_DEDUCED_TYPENAME
21
22// Metrowerks workaround
23#if BOOST_WORKAROUND(__MWERKS__, <= 0x3003) // 8.x
24#pragma parse_func_templ off
25#endif
26
27#endif  // BOOST_STRING_CONFIG_HPP
Note: See TracBrowser for help on using the repository browser.