| 1599 | // integer value_traits specializations - standard types |
| 1600 | template <typename T> |
| 1601 | struct integer_limits |
| 1602 | { |
| 1603 | static constexpr auto min = (std::numeric_limits<T>::min)(); |
| 1604 | static constexpr auto max = (std::numeric_limits<T>::max)(); |
| 1605 | }; |
| 1606 | template <typename T> |
| 1607 | struct integer_traits_base : integer_limits<T> |
| 1608 | { |
nothing calls this directly
no outgoing calls
no test coverage detected