diff options
Diffstat (limited to '3rdParty/Boost/src/boost/range/as_literal.hpp')
-rw-r--r-- | 3rdParty/Boost/src/boost/range/as_literal.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdParty/Boost/src/boost/range/as_literal.hpp b/3rdParty/Boost/src/boost/range/as_literal.hpp index 9ea144d..1c16e4a 100644 --- a/3rdParty/Boost/src/boost/range/as_literal.hpp +++ b/3rdParty/Boost/src/boost/range/as_literal.hpp @@ -1,49 +1,49 @@ // Boost.Range library // // Copyright Thorsten Ottosen 2006. 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_AS_LITERAL_HPP #define BOOST_RANGE_AS_LITERAL_HPP -#if defined(_MSC_VER) && (_MSC_VER >= 1200) +#if defined(_MSC_VER) # pragma once #endif #ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING #include <boost/range/detail/as_literal.hpp> #else #include <boost/range/iterator_range.hpp> #include <boost/range/detail/str_types.hpp> #include <boost/detail/workaround.hpp> #include <cstring> #ifndef BOOST_NO_CWCHAR #include <cwchar> #endif namespace boost { namespace range_detail { inline std::size_t length( const char* s ) { return strlen( s ); } #ifndef BOOST_NO_CWCHAR inline std::size_t length( const wchar_t* s ) { return wcslen( s ); } #endif // // Remark: the compiler cannot choose between T* and T[sz] |