| 55 | |
| 56 | template <class T> |
| 57 | static inline bool TestSignedIntegralLimits(const T& val) { |
| 58 | return TestIntegralLimits(val, false, true); |
| 59 | } |
| 60 | |
| 61 | template <class T> |
| 62 | static inline bool TestUnsignedIntegralLimits(const T& val) { |
no test coverage detected