~ubuntu-branches/ubuntu/saucy/rrootage/saucy

« back to all changes in this revision

Viewing changes to src/bulletml/boost/config/stdlib/libcomo.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Miriam Ruiz
  • Date: 2005-04-07 02:21:00 UTC
  • Revision ID: james.westby@ubuntu.com-20050407022100-uokbm0q4wxf9iad3
Tags: upstream-0.23a
ImportĀ upstreamĀ versionĀ 0.23a

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  (C) Copyright Boost.org 2001. Permission to copy, use, modify, sell and
 
2
//  distribute this software is granted provided this copyright notice appears
 
3
//  in all copies. This software is provided "as is" without express or implied
 
4
//  warranty, and with no claim as to its suitability for any purpose.
 
5
 
 
6
//  See http://www.boost.org for most recent version.
 
7
 
 
8
//  Commeau STL:
 
9
 
 
10
#if !defined(__LIBCOMO__)
 
11
#  include <utility>
 
12
#  if !defined(__LIBCOMO__)
 
13
#      error "This is not the Comeau STL!"
 
14
#  endif
 
15
#endif
 
16
 
 
17
//
 
18
// std::streambuf<wchar_t> is non-standard:
 
19
//
 
20
#if __LIBCOMO_VERSION__ <= 22
 
21
#  define BOOST_NO_STD_WSTREAMBUF
 
22
#endif
 
23
 
 
24
//
 
25
// Intrinsic type_traits support.
 
26
// The SGI STL has it's own __type_traits class, which
 
27
// has intrinsic compiler support with SGI's compilers.
 
28
// Whatever map SGI style type traits to boost equivalents:
 
29
//
 
30
#define BOOST_HAS_SGI_TYPE_TRAITS
 
31
 
 
32
#define BOOST_STDLIB "Commeau standard library" BOOST_STRINGIZE(__LIBCOMO_VERSION__)
 
33