annotate DEPENDENCIES/generic/include/boost/icl/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 /*-----------------------------------------------------------------------------+
Chris@16 2 Copyright (c) 2007-2011: Joachim Faulhaber
Chris@16 3 +------------------------------------------------------------------------------+
Chris@16 4 Distributed under the Boost Software License, Version 1.0.
Chris@16 5 (See accompanying file LICENCE.txt or copy at
Chris@16 6 http://www.boost.org/LICENSE_1_0.txt)
Chris@16 7 +-----------------------------------------------------------------------------*/
Chris@16 8 #ifndef BOOST_ICL_SET_HPP_JOFA_070519
Chris@16 9 #define BOOST_ICL_SET_HPP_JOFA_070519
Chris@16 10
Chris@16 11 #include <boost/icl/impl_config.hpp>
Chris@16 12
Chris@16 13 #if defined(ICL_USE_BOOST_MOVE_IMPLEMENTATION)
Chris@16 14 # include <boost/container/set.hpp>
Chris@16 15 #elif defined(ICL_USE_STD_IMPLEMENTATION)
Chris@16 16 # include <set>
Chris@16 17 #else
Chris@16 18 # include <set>
Chris@16 19 #endif
Chris@16 20
Chris@16 21 #include <boost/icl/associative_element_container.hpp>
Chris@16 22 #include <boost/icl/functors.hpp>
Chris@16 23
Chris@16 24 #endif // BOOST_ICL_SET_HPP_JOFA_070519
Chris@16 25