Files
boost_algorithm/include/boost/algorithm/string/config.hpp
T

29 lines
790 B
C++
Raw Normal View History

2004-03-04 22:12:19 +00:00
// Boost string_algo library config.hpp header file ---------------------------//
// Copyright Pavol Droba 2002-2003.
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
2004-03-04 22:12:19 +00:00
// See http://www.boost.org/ for updates, documentation, and revision history.
2004-03-04 22:12:19 +00:00
#ifndef BOOST_STRING_CONFIG_HPP
#define BOOST_STRING_CONFIG_HPP
#include <boost/config.hpp>
2004-07-16 13:57:40 +00:00
#include <boost/detail/workaround.hpp>
2004-03-04 22:12:19 +00:00
#ifdef BOOST_STRING_DEDUCED_TYPENAME
# error "macro already defined!"
#endif
#define BOOST_STRING_TYPENAME BOOST_DEDUCED_TYPENAME
2004-07-03 10:31:01 +00:00
// Metrowerks workaround
#if BOOST_WORKAROUND(__MWERKS__, <= 0x3003) // 8.x
#pragma parse_func_templ off
#endif
2004-03-04 22:12:19 +00:00
#endif // BOOST_STRING_CONFIG_HPP