| 840 | |
| 841 | template <typename T, typename U> |
| 842 | void |
| 843 | check_signed_range(bool negative, U value, const std::string& text) |
| 844 | { |
| 845 | SignedCheck<T, std::numeric_limits<T>::is_signed>()(negative, value, text); |
| 846 | } |
| 847 | } // namespace detail |
| 848 | |
| 849 | template <typename R, typename T> |
nothing calls this directly
no outgoing calls
no test coverage detected