| 1629 | }; |
| 1630 | template <typename T, bool S = integer_traits_base<T>::is_signed> |
| 1631 | struct integer_traits : signed_integer_traits<T> |
| 1632 | {}; |
| 1633 | template <typename T> |
| 1634 | struct integer_traits<T, false> : unsigned_integer_traits<T> |
| 1635 | {}; |
nothing calls this directly
no outgoing calls
no test coverage detected