2002-07-18 11:06:42 +00:00
|
|
|
// (C) Copyright Boost.org 2001. Permission to copy, use, modify, sell and
|
|
|
|
// distribute this software is granted provided this copyright notice appears
|
|
|
|
// in all copies. This software is provided "as is" without express or implied
|
|
|
|
// warranty, and with no claim as to its suitability for any purpose.
|
|
|
|
|
|
|
|
// See http://www.boost.org for most recent version.
|
|
|
|
|
2003-06-02 12:12:20 +00:00
|
|
|
// Comeau STL:
|
2002-07-18 11:06:42 +00:00
|
|
|
|
|
|
|
#if !defined(__LIBCOMO__)
|
|
|
|
# include <utility>
|
|
|
|
# if !defined(__LIBCOMO__)
|
|
|
|
# error "This is not the Comeau STL!"
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//
|
2003-07-09 20:00:32 +00:00
|
|
|
// std::streambuf<wchar_t> is non-standard
|
|
|
|
// NOTE: versions of libcomo prior to beta28 have octal version numbering,
|
|
|
|
// e.g. version 25 is 21 (dec)
|
2002-07-18 11:06:42 +00:00
|
|
|
#if __LIBCOMO_VERSION__ <= 22
|
|
|
|
# define BOOST_NO_STD_WSTREAMBUF
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//
|
|
|
|
// Intrinsic type_traits support.
|
|
|
|
// The SGI STL has it's own __type_traits class, which
|
|
|
|
// has intrinsic compiler support with SGI's compilers.
|
|
|
|
// Whatever map SGI style type traits to boost equivalents:
|
|
|
|
//
|
|
|
|
#define BOOST_HAS_SGI_TYPE_TRAITS
|
|
|
|
|
2003-06-02 12:12:20 +00:00
|
|
|
#define BOOST_STDLIB "Comeau standard library" BOOST_STRINGIZE(__LIBCOMO_VERSION__)
|
2002-07-18 11:06:42 +00:00
|
|
|
|