annotate DEPENDENCIES/generic/include/boost/fusion/container/deque/deque_fwd.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 /*=============================================================================
Chris@16 2 Copyright (c) 2005-2012 Joel de Guzman
Chris@16 3 Copyright (c) 2005-2007 Dan Marsden
Chris@16 4
Chris@16 5 Distributed under the Boost Software License, Version 1.0. (See accompanying
Chris@16 6 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Chris@16 7 ==============================================================================*/
Chris@16 8 #if !defined(FUSION_DEQUE_FORWARD_02092007_0749)
Chris@16 9 #define FUSION_DEQUE_FORWARD_02092007_0749
Chris@16 10
Chris@101 11 #include <boost/fusion/support/config.hpp>
Chris@16 12 #include <boost/config.hpp>
Chris@16 13
Chris@101 14 #if (defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) \
Chris@101 15 || defined(BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS)) \
Chris@101 16 || (defined(__WAVE__) && defined(BOOST_FUSION_CREATE_PREPROCESSED_FILES))
Chris@101 17 # if defined(BOOST_FUSION_HAS_VARIADIC_DEQUE)
Chris@101 18 # undef BOOST_FUSION_HAS_VARIADIC_DEQUE
Chris@101 19 # endif
Chris@16 20 #else
Chris@16 21 # if !defined(BOOST_FUSION_HAS_VARIADIC_DEQUE)
Chris@16 22 # define BOOST_FUSION_HAS_VARIADIC_DEQUE
Chris@16 23 # endif
Chris@101 24 #endif
Chris@101 25
Chris@101 26 // MSVC variadics at this point in time is not ready yet (ICE!)
Chris@101 27 #if BOOST_WORKAROUND(BOOST_MSVC, BOOST_TESTED_AT(1900))
Chris@101 28 # if defined(BOOST_FUSION_HAS_VARIADIC_DEQUE)
Chris@101 29 # undef BOOST_FUSION_HAS_VARIADIC_DEQUE
Chris@101 30 # endif
Chris@101 31 #endif
Chris@101 32
Chris@101 33 ///////////////////////////////////////////////////////////////////////////////
Chris@101 34 // With no variadics, we will use the C++03 version
Chris@101 35 ///////////////////////////////////////////////////////////////////////////////
Chris@101 36 #if !defined(BOOST_FUSION_HAS_VARIADIC_DEQUE)
Chris@101 37 # include <boost/fusion/container/deque/detail/cpp03/deque_fwd.hpp>
Chris@101 38 #else
Chris@16 39
Chris@16 40 ///////////////////////////////////////////////////////////////////////////////
Chris@16 41 // C++11 interface
Chris@16 42 ///////////////////////////////////////////////////////////////////////////////
Chris@16 43 namespace boost { namespace fusion
Chris@16 44 {
Chris@16 45 template <typename ...T>
Chris@16 46 struct deque;
Chris@16 47 }}
Chris@16 48
Chris@16 49 #endif
Chris@16 50 #endif