mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Fix: AllowCommandLineReparsing unuse
This commit is contained in:
parent
a738fdf933
commit
9a98cb6903
1 changed files with 4 additions and 1 deletions
|
@ -1983,7 +1983,6 @@ uint32 ParseCommandLineNonHelpFlags(int* argc, char*** argv,
|
|||
// dlopen, to get the new flags. But you have to explicitly
|
||||
// Allow() it; otherwise, you get the normal default behavior
|
||||
// of unrecognized flags calling a fatal error.
|
||||
// TODO(csilvers): this isn't used. Just delete it?
|
||||
// --------------------------------------------------------------------
|
||||
|
||||
void AllowCommandLineReparsing() {
|
||||
|
@ -1991,6 +1990,10 @@ void AllowCommandLineReparsing() {
|
|||
}
|
||||
|
||||
void ReparseCommandLineNonHelpFlags() {
|
||||
// Check reparse status
|
||||
if (!allow_command_line_reparsing) {
|
||||
return;
|
||||
}
|
||||
// We make a copy of argc and argv to pass in
|
||||
const vector<string>& argvs = GetArgvs();
|
||||
int tmp_argc = static_cast<int>(argvs.size());
|
||||
|
|
Loading…
Add table
Reference in a new issue