about summary refs log tree commit diff
path: root/absl/strings/charconv.h
diff options
context:
space:
mode:
Diffstat (limited to 'absl/strings/charconv.h')
-rw-r--r--absl/strings/charconv.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/absl/strings/charconv.h b/absl/strings/charconv.h
index 3f5891ba7f..e04be32f95 100644
--- a/absl/strings/charconv.h
+++ b/absl/strings/charconv.h
@@ -17,7 +17,10 @@
 
 #include <system_error>  // NOLINT(build/c++11)
 
+#include "absl/base/config.h"
+
 namespace absl {
+ABSL_NAMESPACE_BEGIN
 
 // Workalike compatibilty version of std::chars_format from C++17.
 //
@@ -110,6 +113,7 @@ inline chars_format& operator^=(chars_format& lhs, chars_format rhs) {
   return lhs;
 }
 
+ABSL_NAMESPACE_END
 }  // namespace absl
 
 #endif  // ABSL_STRINGS_CHARCONV_H_