@@ -478,14 +478,13 @@ class OptionsParser {
478478 // Options struct instead.
479479 // affects_snapshot marks that the flag's effective value must match between
480480 // snapshot build and load time.
481- void AddOption (
482- const char * name,
483- const char * help_text,
484- bool Options::*field,
485- OptionEnvvarSettings env_setting = kDisallowedInEnvvar ,
486- bool default_is_true = false ,
487- OptionNamespaces namespace_id = OptionNamespaces::kNoNamespace ,
488- bool affects_snapshot = false );
481+ void AddOption (const char * name,
482+ const char * help_text,
483+ bool Options::*field,
484+ OptionEnvvarSettings env_setting = kDisallowedInEnvvar ,
485+ bool default_is_true = false ,
486+ OptionNamespaces namespace_id = OptionNamespaces::kNoNamespace ,
487+ bool affects_snapshot = false );
489488 void AddOption (
490489 const char * name,
491490 const char * help_text,
@@ -712,9 +711,9 @@ std::vector<std::string> ParseNodeOptionsEnvVar(
712711
713712// Describes one snapshot-affecting boolean option.
714713struct SnapshotFlagInfo {
715- std::string name; // canonical CLI flag name
716- bool value; // current effective value
717- bool default_is_true; // true if the flag defaults to on (--no-* form)
714+ std::string name; // canonical CLI flag name
715+ bool value; // current effective value
716+ bool default_is_true; // true if the flag defaults to on (--no-* form)
718717};
719718
720719// Returns every boolean EnvironmentOption marked affects_snapshot=true,
0 commit comments