Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/tr1/tr1/istream @ 133:4acb5d8d80b6 tip
Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author | Chris Cannam |
---|---|
date | Tue, 30 Jul 2019 12:25:44 +0100 |
parents | 2665513ce2d3 |
children |
rev | line source |
---|---|
Chris@16 | 1 // (C) Copyright John Maddock 2005. |
Chris@16 | 2 // Use, modification and distribution are subject to the |
Chris@16 | 3 // Boost Software License, Version 1.0. (See accompanying file |
Chris@16 | 4 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
Chris@16 | 5 // |
Chris@16 | 6 // This file exists to prevent std lib headers from accidentally |
Chris@16 | 7 // including a TR1 extention header; we must suppress this otherwise |
Chris@16 | 8 // we can end up with cyclic dependencies with some std lib implementations. |
Chris@16 | 9 // |
Chris@16 | 10 #ifndef BOOST_TR1_istream_INCLUDED |
Chris@16 | 11 # define BOOST_TR1_istream_INCLUDED |
Chris@16 | 12 # ifndef BOOST_TR1_NO_RECURSION |
Chris@16 | 13 # define BOOST_TR1_NO_RECURSION |
Chris@16 | 14 # define BOOST_TR1_NO_istream_RECURSION |
Chris@16 | 15 # endif |
Chris@16 | 16 # include <boost/tr1/detail/config_all.hpp> |
Chris@16 | 17 # if defined(BOOST_HAS_INCLUDE_NEXT) && !defined(BOOST_TR1_DISABLE_INCLUDE_NEXT) |
Chris@16 | 18 # include_next <istream> |
Chris@16 | 19 # else |
Chris@16 | 20 # include BOOST_TR1_STD_HEADER(istream) |
Chris@16 | 21 # endif |
Chris@16 | 22 # ifdef BOOST_TR1_NO_istream_RECURSION |
Chris@16 | 23 # undef BOOST_TR1_NO_istream_RECURSION |
Chris@16 | 24 # undef BOOST_TR1_NO_RECURSION |
Chris@16 | 25 # endif |
Chris@16 | 26 #endif |
Chris@16 | 27 |