mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Extract common code from FlagRegisterer to reduce size.
This commit is contained in:
parent
a1e461d61d
commit
3c0ad4fc9e
1 changed files with 21 additions and 9 deletions
|
@ -1440,18 +1440,30 @@ bool AddFlagValidator(const void* flag_ptr, ValidateFnProto validate_fn_proto) {
|
|||
// values in a global destructor.
|
||||
// --------------------------------------------------------------------
|
||||
|
||||
template <typename FlagType>
|
||||
FlagRegisterer::FlagRegisterer(const char* name,
|
||||
const char* help, const char* filename,
|
||||
FlagType* current_storage, FlagType* defvalue_storage) {
|
||||
namespace {
|
||||
void RegisterCommandLineFlag(const char* name,
|
||||
const char* help,
|
||||
const char* filename,
|
||||
FlagValue* current,
|
||||
FlagValue* defvalue) {
|
||||
if (help == NULL)
|
||||
help = "";
|
||||
FlagValue* current = new FlagValue(current_storage, false);
|
||||
FlagValue* defvalue = new FlagValue(defvalue_storage, false);
|
||||
// Importantly, flag_ will never be deleted, so storage is always good.
|
||||
CommandLineFlag* flag = new CommandLineFlag(name, help, filename,
|
||||
current, defvalue);
|
||||
FlagRegistry::GlobalRegistry()->RegisterFlag(flag); // default registry
|
||||
CommandLineFlag* flag =
|
||||
new CommandLineFlag(name, help, filename, current, defvalue);
|
||||
FlagRegistry::GlobalRegistry()->RegisterFlag(flag); // default registry
|
||||
}
|
||||
}
|
||||
|
||||
template <typename FlagType>
|
||||
FlagRegisterer::FlagRegisterer(const char* name,
|
||||
const char* help,
|
||||
const char* filename,
|
||||
FlagType* current_storage,
|
||||
FlagType* defvalue_storage) {
|
||||
FlagValue* const current = new FlagValue(current_storage, false);
|
||||
FlagValue* const defvalue = new FlagValue(defvalue_storage, false);
|
||||
RegisterCommandLineFlag(name, help, filename, current, defvalue);
|
||||
}
|
||||
|
||||
// Force compiler to generate code for the given template specialization.
|
||||
|
|
Loading…
Add table
Reference in a new issue