/usr/include/boost/numeric/conversion
NameSizeModeActions
detail/-0755rm
bounds.hpp7060644editdlrm
cast.hpp21230644editdlrm
conversion_traits.hpp9540644editdlrm
converter.hpp22390644editdlrm
converter_policies.hpp45520644editdlrm
int_float_mixture.hpp10420644editdlrm
int_float_mixture_enum.hpp8510644editdlrm
is_subranged.hpp9080644editdlrm
numeric_cast_traits.hpp9830644editdlrm
sign_mixture.hpp10070644editdlrm
sign_mixture_enum.hpp8400644editdlrm
udt_builtin_mixture.hpp9570644editdlrm
udt_builtin_mixture_enum.hpp7450644editdlrm
Edit: /usr/include/boost/numeric/conversion/numeric_cast_traits.hpp (983B)
// //! Copyright (c) 2011 //! Brandon Kohn // // Distributed under 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) // #ifndef BOOST_NUMERIC_CAST_TRAITS_HPP #define BOOST_NUMERIC_CAST_TRAITS_HPP #include namespace boost { namespace numeric { template struct numeric_cast_traits { typedef def_overflow_handler overflow_policy; typedef UseInternalRangeChecker range_checking_policy; typedef Trunc rounding_policy; }; }}//namespace boost::numeric; #if !defined( BOOST_NUMERIC_CONVERSION_RELAX_BUILT_IN_CAST_TRAITS ) #include #include #endif//!defined BOOST_NUMERIC_CONVERSION_RELAX_BUILT_IN_CAST_TRAITS #endif//BOOST_NUMERIC_CAST_TRAITS_HPP