| 1974 | // `GetBool()`. |
| 1975 | template <typename T> |
| 1976 | std::enable_if_t<std::is_same_v<BoolValue, T>, BoolValue> Get() & { |
| 1977 | return GetBool(); |
| 1978 | } |
| 1979 | template <typename T> |
| 1980 | std::enable_if_t<std::is_same_v<BoolValue, T>, BoolValue> Get() const& { |
| 1981 | return GetBool(); |
nothing calls this directly
no test coverage detected