1234567891011121314151617181920212223 |
- #ifndef BOOST_NUMERIC_CONCEPT_NUMERIC_HPP
- #define BOOST_NUMERIC_CONCEPT_NUMERIC_HPP
- #include <limits>
- #include <cstdint>
- #include <type_traits>
- namespace boost {
- namespace safe_numerics {
- template<class T>
- using Numeric = std::integral_constant<bool, std::numeric_limits<T>::is_specialized>;
- }
- }
- #endif
|