mirror of
https://github.com/boostorg/functional.git
synced 2025-08-02 05:54:29 +02:00
Add char_traits support to the container_fwd header.
[SVN r31133]
This commit is contained in:
@@ -8,6 +8,7 @@
|
|||||||
#define BOOST_DETAIL_CONTAINER_FWD_HPP
|
#define BOOST_DETAIL_CONTAINER_FWD_HPP
|
||||||
|
|
||||||
#include <boost/config.hpp>
|
#include <boost/config.hpp>
|
||||||
|
#include <boost/detail/workaround.hpp>
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
|
|
||||||
#if !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION) && \
|
#if !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION) && \
|
||||||
@@ -35,6 +36,12 @@ namespace std
|
|||||||
|
|
||||||
template <class charT, class traits, class Allocator> class basic_string;
|
template <class charT, class traits, class Allocator> class basic_string;
|
||||||
|
|
||||||
|
#if BOOST_WORKAROUND(__GNUC__, < 3) && !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION)
|
||||||
|
template <class charT> class string_char_traits;
|
||||||
|
#else
|
||||||
|
template <class charT> class char_traits;
|
||||||
|
#endif
|
||||||
|
|
||||||
#if !defined(BOOST_CONTAINER_FWD_BAD_DEQUE)
|
#if !defined(BOOST_CONTAINER_FWD_BAD_DEQUE)
|
||||||
template <class T, class Allocator> class deque;
|
template <class T, class Allocator> class deque;
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user