Last change
on this file since 46 was
29,
checked in by landauf, 17 years ago
|
updated boost from 1_33_1 to 1_34_1
|
File size:
808 bytes
|
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.