Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/tr1/unordered_set.hpp @ 125:34e428693f5d vext
Vext -> Repoint
author | Chris Cannam |
---|---|
date | Thu, 14 Jun 2018 11:15:39 +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 |