diff options
Diffstat (limited to 'absl/base/log_severity.h')
-rw-r--r-- | absl/base/log_severity.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/absl/base/log_severity.h b/absl/base/log_severity.h index f5dc7d266120..e247c4a9796c 100644 --- a/absl/base/log_severity.h +++ b/absl/base/log_severity.h @@ -19,8 +19,10 @@ #include <ostream> #include "absl/base/attributes.h" +#include "absl/base/config.h" namespace absl { +ABSL_NAMESPACE_BEGIN // Four severity levels are defined. Logging APIs should terminate the program // when a message is logged at severity `kFatal`; the other levels have no @@ -79,6 +81,7 @@ constexpr absl::LogSeverity NormalizeLogSeverity(int s) { // unspecified; do not rely on it. std::ostream& operator<<(std::ostream& os, absl::LogSeverity s); +ABSL_NAMESPACE_END } // namespace absl #endif // ABSL_BASE_INTERNAL_LOG_SEVERITY_H_ |