Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
3 // Copyright Thorsten Ottosen 2003-2004. Use, modification and
4 // distribution is subject to the Boost Software License, Version
5 // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt)
8 // For more information, see http://www.boost.org/libs/range/
11 #ifndef BOOST_RANGE_EMPTY_HPP
12 #define BOOST_RANGE_EMPTY_HPP
14 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
18 #include <boost/range/config.hpp>
19 //#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
20 //#include <boost/range/detail/empty.hpp>
23 #include <boost/range/begin.hpp>
24 #include <boost/range/end.hpp>
28 namespace range_detail
31 //////////////////////////////////////////////////////////////////////
33 //////////////////////////////////////////////////////////////////////
35 template< typename C >
36 inline bool empty( const C& c )
38 return boost::begin( c ) == boost::end( c );
41 //////////////////////////////////////////////////////////////////////
43 //////////////////////////////////////////////////////////////////////
45 inline bool empty( const char* const& s )
47 return s == 0 || s[0] == 0;
50 inline bool empty( const wchar_t* const& s )
52 return s == 0 || s[0] == 0;
55 } // namespace 'range_detail'
58 inline bool empty( const T& r )
60 return range_detail::empty( r );
65 //#endif // BOOST_NO_FUNCTION_TEMPLATE_ORDERING