annotate DEPENDENCIES/generic/include/boost/iostreams/detail/bool_trait_def.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 2008 CodeRage, LLC (turkanis at coderage dot com)
Chris@16 2 // (C) Copyright 2003-2007 Jonathan Turkanis
Chris@16 3 // Distributed under the Boost Software License, Version 1.0. (See accompanying
Chris@16 4 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
Chris@16 5
Chris@16 6 // See http://www.boost.org/libs/iostreams for documentation.
Chris@16 7
Chris@16 8 #ifndef BOOST_IOSTREAMS_DETAIL_BOOL_TRAIT_DEF_HPP_INCLUDED
Chris@16 9 #define BOOST_IOSTREAMS_DETAIL_BOOL_TRAIT_DEF_HPP_INCLUDED
Chris@16 10
Chris@16 11 #include <boost/config.hpp> // BOOST_STATIC_CONSTANT.
Chris@16 12 #include <boost/iostreams/detail/template_params.hpp>
Chris@16 13 #include <boost/mpl/aux_/lambda_support.hpp>
Chris@16 14 #include <boost/mpl/bool.hpp>
Chris@16 15 #include <boost/preprocessor/cat.hpp>
Chris@16 16 #include <boost/preprocessor/repetition/enum_params.hpp>
Chris@16 17 #include <boost/type_traits/detail/yes_no_type.hpp>
Chris@16 18
Chris@16 19 //
Chris@16 20 // Macro name: BOOST_IOSTREAMS_BOOL_TRAIT_DEF
Chris@16 21 // Description: Used to generate the traits classes is_istream, is_ostream,
Chris@16 22 // etc.
Chris@16 23 //
Chris@16 24 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x582))
Chris@16 25 # define BOOST_IOSTREAMS_TRAIT_NAMESPACE(trait)
Chris@16 26 #else
Chris@16 27 # define BOOST_IOSTREAMS_TRAIT_NAMESPACE(trait) BOOST_PP_CAT(trait, _impl_)::
Chris@16 28 #endif
Chris@16 29 #define BOOST_IOSTREAMS_BOOL_TRAIT_DEF(trait, type, arity) \
Chris@16 30 namespace BOOST_PP_CAT(trait, _impl_) { \
Chris@16 31 BOOST_IOSTREAMS_TEMPLATE_PARAMS(arity, T) \
Chris@16 32 type_traits::yes_type helper \
Chris@16 33 (const volatile type BOOST_IOSTREAMS_TEMPLATE_ARGS(arity, T)*); \
Chris@16 34 type_traits::no_type helper(...); \
Chris@16 35 template<typename T> \
Chris@16 36 struct impl { \
Chris@16 37 BOOST_STATIC_CONSTANT(bool, value = \
Chris@16 38 (sizeof(BOOST_IOSTREAMS_TRAIT_NAMESPACE(trait) \
Chris@16 39 helper(static_cast<T*>(0))) == \
Chris@16 40 sizeof(type_traits::yes_type))); \
Chris@16 41 }; \
Chris@16 42 } \
Chris@16 43 template<typename T> \
Chris@16 44 struct trait \
Chris@16 45 : mpl::bool_<BOOST_PP_CAT(trait, _impl_)::impl<T>::value> \
Chris@16 46 { BOOST_MPL_AUX_LAMBDA_SUPPORT(1, trait, (T)) }; \
Chris@16 47 /**/
Chris@16 48
Chris@16 49 #endif // #ifndef BOOST_IOSTREAMS_DETAIL_BOOL_TRAIT_DEF_HPP_INCLUDED