mirror of
https://github.com/boostorg/detail.git
synced 2025-07-30 12:27:15 +02:00
Move BOOST_HASH_CHAR_TRAITS from container_fwd into the hash headers, and undefine it.
[SVN r54143]
This commit is contained in:
@ -13,12 +13,6 @@
|
|||||||
#include <boost/config.hpp>
|
#include <boost/config.hpp>
|
||||||
#include <boost/detail/workaround.hpp>
|
#include <boost/detail/workaround.hpp>
|
||||||
|
|
||||||
#if BOOST_WORKAROUND(__GNUC__, < 3) && !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION)
|
|
||||||
#define BOOST_HASH_CHAR_TRAITS string_char_traits
|
|
||||||
#else
|
|
||||||
#define BOOST_HASH_CHAR_TRAITS char_traits
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if ((defined(__GLIBCPP__) || defined(__GLIBCXX__)) && defined(_GLIBCXX_DEBUG)) \
|
#if ((defined(__GLIBCPP__) || defined(__GLIBCXX__)) && defined(_GLIBCXX_DEBUG)) \
|
||||||
|| BOOST_WORKAROUND(__BORLANDC__, > 0x551) \
|
|| BOOST_WORKAROUND(__BORLANDC__, > 0x551) \
|
||||||
|| BOOST_WORKAROUND(__DMC__, BOOST_TESTED_AT(0x842)) \
|
|| BOOST_WORKAROUND(__DMC__, BOOST_TESTED_AT(0x842)) \
|
||||||
@ -65,7 +59,13 @@ namespace std
|
|||||||
{
|
{
|
||||||
template <class T> class allocator;
|
template <class T> class allocator;
|
||||||
template <class charT, class traits, class Allocator> class basic_string;
|
template <class charT, class traits, class Allocator> class basic_string;
|
||||||
template <class charT> struct BOOST_HASH_CHAR_TRAITS;
|
|
||||||
|
#if BOOST_WORKAROUND(__GNUC__, < 3) && !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION)
|
||||||
|
template <class charT> struct string_char_traits;
|
||||||
|
#else
|
||||||
|
template <class charT> struct char_traits;
|
||||||
|
#endif
|
||||||
|
|
||||||
template <class T> class complex;
|
template <class T> class complex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user