aboutsummaryrefslogtreecommitdiffhomepage
path: root/absl/strings/internal/pow10_helper.h
diff options
context:
space:
mode:
Diffstat (limited to 'absl/strings/internal/pow10_helper.h')
-rw-r--r--absl/strings/internal/pow10_helper.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/absl/strings/internal/pow10_helper.h b/absl/strings/internal/pow10_helper.h
index 9d1aa71..c37c2c3 100644
--- a/absl/strings/internal/pow10_helper.h
+++ b/absl/strings/internal/pow10_helper.h
@@ -22,7 +22,10 @@
#include <vector>
+#include "absl/base/config.h"
+
namespace absl {
+ABSL_NAMESPACE_BEGIN
namespace strings_internal {
// Computes the precise value of 10^exp. (I.e. the nearest representable
@@ -31,6 +34,7 @@ namespace strings_internal {
double Pow10(int exp);
} // namespace strings_internal
+ABSL_NAMESPACE_END
} // namespace absl
#endif // ABSL_STRINGS_INTERNAL_POW10_HELPER_H_