Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:30:29

0001 #ifndef BOOST_CORE_IS_SAME_HPP_INCLUDED
0002 #define BOOST_CORE_IS_SAME_HPP_INCLUDED
0003 
0004 // is_same<T1,T2>::value is true when T1 == T2
0005 //
0006 // Copyright 2014 Peter Dimov
0007 //
0008 // Distributed under the Boost Software License, Version 1.0.
0009 // See accompanying file LICENSE_1_0.txt or copy at
0010 // http://www.boost.org/LICENSE_1_0.txt
0011 
0012 #include <boost/config.hpp>
0013 #include <boost/core/detail/is_same.hpp>
0014 
0015 #if defined(BOOST_HAS_PRAGMA_ONCE)
0016 # pragma once
0017 #endif
0018 
0019 #include <boost/config/header_deprecated.hpp>
0020 
0021 BOOST_HEADER_DEPRECATED("<boost/type_traits/is_same.hpp>")
0022 
0023 namespace boost
0024 {
0025 
0026 namespace core
0027 {
0028 
0029 using boost::core::detail::is_same;
0030 
0031 } // namespace core
0032 
0033 } // namespace boost
0034 
0035 #endif // #ifndef BOOST_CORE_IS_SAME_HPP_INCLUDED