diff options
author | Abseil Team <absl-team@google.com> | 2018-05-10T17·16-0700 |
---|---|---|
committer | John Olson <jolson@google.com> | 2018-05-10T21·33-0400 |
commit | 7454bdded7878b10dcdf8d5c64756c7a87e46500 (patch) | |
tree | b944d15a6b0f51c2a59e5397dc5466fab413acd3 /absl/strings/str_cat.h | |
parent | cd95e71df6eaf8f2a282b1da556c2cf1c9b09207 (diff) |
- be60293bacf8d17861853a73c751b4a74534b049 Update header file for failure_signal_handler.h by Tom Manshreck <shreck@google.com>
- 83dbeb97cb3874932a4159f2f287c5b2cca7089b Fix for MSVC warning C4244 about "conversion from 'int' t... by Abseil Team <absl-team@google.com> GitOrigin-RevId: be60293bacf8d17861853a73c751b4a74534b049 Change-Id: If8a91fa3edca47f349662cb214fde380c65802bb
Diffstat (limited to 'absl/strings/str_cat.h')
-rw-r--r-- | absl/strings/str_cat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/strings/str_cat.h b/absl/strings/str_cat.h index e38369cab7ff..e5501a5012ee 100644 --- a/absl/strings/str_cat.h +++ b/absl/strings/str_cat.h @@ -80,7 +80,7 @@ struct AlphaNumBuffer { // `Dec` conversion and fill character to use. A `kZeroPad2` value, for example, // would produce hexadecimal strings such as "0A","0F" and a 'kSpacePad5' value // would produce hexadecimal strings such as " A"," F". -enum PadSpec { +enum PadSpec : uint8_t { kNoPad = 1, kZeroPad2, kZeroPad3, |