Commit 36a4b073 by Sergei Trofimovich

absl/strings/internal/str_format/extension.h: add missing <stdint.h> include

Without the change absl-cpp build fails on this week's gcc-13 snapshot as:

    /build/abseil-cpp/absl/strings/internal/str_format/extension.h:34:33: error: found ':' in nested-name-specifier, expected '::'
       34 | enum class FormatConversionChar : uint8_t;
          |                                 ^
          |                                 ::
parent 48f72c22
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
#define ABSL_STRINGS_INTERNAL_STR_FORMAT_EXTENSION_H_ #define ABSL_STRINGS_INTERNAL_STR_FORMAT_EXTENSION_H_
#include <limits.h> #include <limits.h>
#include <stdint.h>
#include <cstddef> #include <cstddef>
#include <cstring> #include <cstring>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment