Add char_traits support to the container_fwd header.

[SVN r31133]
This commit is contained in:
Daniel James
2005-09-27 19:45:04 +00:00
parent b70f0b3aab
commit 016766fdec

View File

@@ -8,6 +8,7 @@
#define BOOST_DETAIL_CONTAINER_FWD_HPP
#include <boost/config.hpp>
#include <boost/detail/workaround.hpp>
#include <cstddef>
#if !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION) && \
@@ -35,6 +36,12 @@ namespace std
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)
template <class T, class Allocator> class deque;
#endif