annotate DEPENDENCIES/generic/include/boost/tr1/unordered_set.hpp @ 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 2008.
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 #ifndef BOOST_TR1_UNORDERED_SET_HPP_INCLUDED
Chris@16 7 # define BOOST_TR1_UNORDERED_SET_HPP_INCLUDED
Chris@16 8 # include <boost/tr1/detail/config.hpp>
Chris@16 9
Chris@16 10 #ifdef BOOST_HAS_TR1_UNORDERED_SET
Chris@16 11
Chris@16 12 # if defined(BOOST_HAS_INCLUDE_NEXT) && !defined(BOOST_TR1_DISABLE_INCLUDE_NEXT)
Chris@16 13 # include_next BOOST_TR1_HEADER(unordered_set)
Chris@16 14 # else
Chris@16 15 # include <boost/tr1/detail/config_all.hpp>
Chris@16 16 # include BOOST_TR1_STD_HEADER(BOOST_TR1_PATH(unordered_set))
Chris@16 17 # endif
Chris@16 18
Chris@16 19 #else
Chris@16 20
Chris@16 21 #include <boost/unordered_set.hpp>
Chris@16 22
Chris@16 23 namespace std{ namespace tr1{
Chris@16 24
Chris@16 25 using ::boost::unordered_set;
Chris@16 26 using ::boost::unordered_multiset;
Chris@16 27 using ::boost::swap;
Chris@16 28
Chris@16 29 } } // namespaces
Chris@16 30
Chris@16 31 #endif
Chris@16 32
Chris@16 33 #endif