Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/variant/multivisitors.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 | c530137014c0 |
| children |
| rev | line source |
|---|---|
| Chris@16 | 1 // Boost.Varaint |
| Chris@16 | 2 // Multivisitors defined here |
| Chris@16 | 3 // |
| Chris@16 | 4 // See http://www.boost.org for most recent version, including documentation. |
| Chris@16 | 5 // |
| Chris@101 | 6 // Copyright Antony Polukhin, 2013-2014. |
| Chris@16 | 7 // |
| Chris@16 | 8 // Distributed under the Boost |
| Chris@16 | 9 // Software License, Version 1.0. (See accompanying file |
| Chris@16 | 10 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt). |
| Chris@16 | 11 |
| Chris@16 | 12 #ifndef BOOST_VARIANT_MULTIVISITORS_HPP |
| Chris@16 | 13 #define BOOST_VARIANT_MULTIVISITORS_HPP |
| Chris@16 | 14 |
| Chris@101 | 15 #if defined(_MSC_VER) |
| Chris@16 | 16 # pragma once |
| Chris@16 | 17 #endif |
| Chris@16 | 18 |
| Chris@101 | 19 #include <boost/config.hpp> |
| Chris@101 | 20 #include "boost/variant/variant_fwd.hpp" // for BOOST_VARIANT_DO_NOT_USE_VARIADIC_TEMPLATES |
| Chris@16 | 21 |
| Chris@101 | 22 #if !defined(BOOST_VARIANT_DO_NOT_USE_VARIADIC_TEMPLATES) && !defined(BOOST_NO_CXX11_HDR_TUPLE) |
| Chris@101 | 23 # include <boost/variant/detail/multivisitors_cpp11_based.hpp> |
| Chris@101 | 24 # if !defined(BOOST_NO_CXX14_DECLTYPE_AUTO) && !defined(BOOST_NO_CXX11_DECLTYPE_N3276) |
| Chris@101 | 25 # include <boost/variant/detail/multivisitors_cpp14_based.hpp> |
| Chris@101 | 26 # endif |
| Chris@101 | 27 #else |
| Chris@101 | 28 # include <boost/variant/detail/multivisitors_preprocessor_based.hpp> |
| Chris@16 | 29 #endif |
| Chris@16 | 30 |
| Chris@16 | 31 #endif // BOOST_VARIANT_MULTIVISITORS_HPP |
| Chris@16 | 32 |
