Skip to content

Commit

Permalink
absl/strings/internal/str_format/extension.h: add missing <stdint.h> …
Browse files Browse the repository at this point in the history
…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;
          |                                 ^
          |                                 ::
  • Loading branch information
trofi committed May 27, 2022
1 parent 48f72c2 commit 36a4b07
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions absl/strings/internal/str_format/extension.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#define ABSL_STRINGS_INTERNAL_STR_FORMAT_EXTENSION_H_

#include <limits.h>
#include <stdint.h>

#include <cstddef>
#include <cstring>
Expand Down

0 comments on commit 36a4b07

Please sign in to comment.