Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:53:11

0001 //  (C) Copyright Steve Cleary, Beman Dawes, Howard Hinnant & John Maddock 2000.
0002 //  Use, modification and distribution are subject to the Boost Software License,
0003 //  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0004 //  http://www.boost.org/LICENSE_1_0.txt).
0005 //
0006 //  See http://www.boost.org/libs/type_traits for most recent version including documentation.
0007 
0008 #ifndef BOOST_TYPE_TRAITS_IS_FLOAT_HPP_INCLUDED
0009 #define BOOST_TYPE_TRAITS_IS_FLOAT_HPP_INCLUDED
0010 
0011 // should be the last #include
0012 #include <boost/type_traits/is_floating_point.hpp>
0013 
0014 namespace boost {
0015 
0016 //* is a type T a floating-point type described in the standard (3.9.1p8)
0017    template <class T> struct is_float : public is_floating_point<T> {};
0018 } // namespace boost
0019 
0020 #endif // BOOST_TYPE_TRAITS_IS_FLOAT_HPP_INCLUDED