fix: remove unused declaration (#1032)

This commit is contained in:
Sergiu Deitsch 2024-01-05 00:12:43 +01:00 committed by GitHub
parent f3bee1b15b
commit 8dd7abfdec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -646,14 +646,6 @@ std::string* MakeCheckOpString(const T1& v1, const T2& v2, const char* exprtext)
; ;
namespace base { namespace base {
namespace internal {
// If "s" is less than base_logging::INFO, returns base_logging::INFO.
// If "s" is greater than base_logging::FATAL, returns
// base_logging::ERROR. Otherwise, returns "s".
LogSeverity NormalizeSeverity(LogSeverity s);
} // namespace internal
// A helper class for formatting "expr (V1 vs. V2)" in a CHECK_XX // A helper class for formatting "expr (V1 vs. V2)" in a CHECK_XX
// statement. See MakeCheckOpString for sample usage. Other // statement. See MakeCheckOpString for sample usage. Other