diff options
Diffstat (limited to '3rdParty/Boost/src/boost/range/detail/common.hpp')
-rw-r--r-- | 3rdParty/Boost/src/boost/range/detail/common.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdParty/Boost/src/boost/range/detail/common.hpp b/3rdParty/Boost/src/boost/range/detail/common.hpp index f7539f5..b0ad535 100644 --- a/3rdParty/Boost/src/boost/range/detail/common.hpp +++ b/3rdParty/Boost/src/boost/range/detail/common.hpp @@ -1,49 +1,49 @@ // Boost.Range library // // Copyright Thorsten Ottosen 2003-2004. Use, modification and // distribution is subject to the Boost Software License, Version // 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // For more information, see http://www.boost.org/libs/range/ // #ifndef BOOST_RANGE_DETAIL_COMMON_HPP #define BOOST_RANGE_DETAIL_COMMON_HPP -#if defined(_MSC_VER) && (_MSC_VER >= 1200) +#if defined(_MSC_VER) # pragma once #endif #include <boost/range/config.hpp> #include <boost/range/detail/sfinae.hpp> #include <boost/type_traits/is_void.hpp> #include <boost/type_traits/detail/ice_or.hpp> #include <boost/mpl/if.hpp> #include <boost/mpl/int.hpp> #include <cstddef> ////////////////////////////////////////////////////////////////////////////// // missing partial specialization workaround. ////////////////////////////////////////////////////////////////////////////// namespace boost { namespace range_detail { // 1 = std containers // 2 = std::pair // 3 = const std::pair // 4 = array // 5 = const array // 6 = char array // 7 = wchar_t array // 8 = char* // 9 = const char* // 10 = whar_t* // 11 = const wchar_t* // 12 = string typedef mpl::int_<1>::type std_container_; typedef mpl::int_<2>::type std_pair_; typedef mpl::int_<3>::type const_std_pair_; |