Export of internal Abseil changes.
-- 425305bdac5c84a2b7b61d65aee90e4d9d1c29a0 by Abseil Team <absl-team@google.com>: Change a comment about hex strings to use lowercase 'a' and 'f' characters, since StrCat(Hex()) produces lowercase hex characters. PiperOrigin-RevId: 236763001 -- 2a312da1c2e46da3bdece0c322c4cd37356bb9aa by Samuel Benzaquen <sbenza@google.com>: Enable more tests for non-std containers by default. Add more tests for typedefs and other members. PiperOrigin-RevId: 236652269 -- 5d5abd4d8e8e03d3c924675550a9584325b18732 by Eric Fiselier <ericwf@google.com>: Fix incorrect detection of unavailable C++17 types. Using <any> on OS X has complications, because it is present but marked "unavailable" due to dylib compatibility reasons. The dance we did to detect availability was correct on OS X, but accidentally clobbered all other platforms for not being Apple. This patch corrects the detection. PiperOrigin-RevId: 236651217 GitOrigin-RevId: 425305bdac5c84a2b7b61d65aee90e4d9d1c29a0 Change-Id: Ib922ce003422781aec169ea169d8fb15292ccd85
This commit is contained in:
parent
419f3184f8
commit
9fdf5e5b80
14 changed files with 482 additions and 78 deletions
|
@ -78,8 +78,8 @@ struct AlphaNumBuffer {
|
|||
|
||||
// Enum that specifies the number of significant digits to return in a `Hex` or
|
||||
// `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".
|
||||
// would produce hexadecimal strings such as "0a","0f" and a 'kSpacePad5' value
|
||||
// would produce hexadecimal strings such as " a"," f".
|
||||
enum PadSpec : uint8_t {
|
||||
kNoPad = 1,
|
||||
kZeroPad2,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue