]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/tr1/include/boost/tr1/tr1/strstream
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / tr1 / include / boost / tr1 / tr1 / strstream
CommitLineData
7c673cae
FG
1// (C) Copyright John Maddock 2005.
2// Use, modification and distribution are subject to the
3// Boost Software License, Version 1.0. (See accompanying file
4// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5//
6// This file exists to prevent std lib headers from accidentally
7// including a TR1 extention header; we must suppress this otherwise
8// we can end up with cyclic dependencies with some std lib implementations.
9//
10#ifndef BOOST_TR1_strstream_INCLUDED
11# define BOOST_TR1_strstream_INCLUDED
12# ifndef BOOST_TR1_NO_RECURSION
13# define BOOST_TR1_NO_RECURSION
14# define BOOST_TR1_NO_strstream_RECURSION
15# endif
16# include <boost/tr1/detail/config_all.hpp>
17# if defined(BOOST_HAS_INCLUDE_NEXT) && !defined(BOOST_TR1_DISABLE_INCLUDE_NEXT)
18# include_next <strstream>
19# elif defined(__GNUC__) && (__GNUC__ >= 4) && defined(__GLIBCXX__) && !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION)
20# include <backward/strstream>
21# else
22# include BOOST_TR1_STD_HEADER(strstream)
23# endif
24# ifdef BOOST_TR1_NO_strstream_RECURSION
25# undef BOOST_TR1_NO_strstream_RECURSION
26# undef BOOST_TR1_NO_RECURSION
27# endif
28#endif
29