diff options
author | Abseil Team <absl-team@google.com> | 2019-07-18T22·07-0700 |
---|---|---|
committer | Derek Mauro <dmauro@google.com> | 2019-07-19T17·04-0400 |
commit | f3840bc5e33ce4932e35986cf3718450c6f02af2 (patch) | |
tree | 43dd14bfbd542b155040546c4fab6e592c504988 /absl/flags/internal/registry.h | |
parent | 278b26058c036833a4f7f3047d3f4d9296527f87 (diff) |
Export of internal Abseil changes.
-- dcff7cc4eb3837d39d1e083cbf1d4f082054cbf6 by Laramie Leavitt <lar@google.com>: Add default and fallback modes for SaltedSeedSeq::generate(). SeedSeq::generate will often be called with contiguous ranges of uint32_t. Detect this case and use the currently direct code paths to handle it. Otherwise use a fallback mechanism which does an additional copy. PiperOrigin-RevId: 258853656 -- 59ec88845ac2ee6567c493021b54385940d66762 by Gennadiy Rozental <rogeeff@google.com>: Internal change PiperOrigin-RevId: 258822137 -- eb2d1ab21f6f94c24c51c1cd3719846be259e8e7 by Abseil Team <absl-team@google.com>: Add iOS version 11 to the mix of Apple OS versions that have various C++17 header files but do not support them. PiperOrigin-RevId: 258820405 -- 452cea3e13b29797b2c385d7c6da7613d36bdc45 by Gennadiy Rozental <rogeeff@google.com>: Internal change PiperOrigin-RevId: 258802436 GitOrigin-RevId: dcff7cc4eb3837d39d1e083cbf1d4f082054cbf6 Change-Id: I2261cb58e142eb15017ef646a56710dd64f06496
Diffstat (limited to 'absl/flags/internal/registry.h')
-rw-r--r-- | absl/flags/internal/registry.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/absl/flags/internal/registry.h b/absl/flags/internal/registry.h index bd141e1e23d2..27566fbf4ab7 100644 --- a/absl/flags/internal/registry.h +++ b/absl/flags/internal/registry.h @@ -57,7 +57,6 @@ void FillCommandLineFlagInfo(CommandLineFlag* flag, //----------------------------------------------------------------------------- CommandLineFlag* FindCommandLineFlag(absl::string_view name); -CommandLineFlag* FindCommandLineV1Flag(const void* flag_ptr); CommandLineFlag* FindRetiredFlag(absl::string_view name); // Executes specified visitor for each non-retired flag in the registry. @@ -74,7 +73,7 @@ void GetAllFlags(std::vector<CommandLineFlagInfo>* OUTPUT); //----------------------------------------------------------------------------- -bool RegisterCommandLineFlag(CommandLineFlag*, const void* ptr = nullptr); +bool RegisterCommandLineFlag(CommandLineFlag*); //----------------------------------------------------------------------------- // Retired registrations: |