File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -412,6 +412,10 @@ ErrorMode Commands::SettingsContextOptionGroup::getErrorMode() const {
412
412
return errorMode;
413
413
}
414
414
415
+ bool Commands::SettingsContextOptionGroup::doDifferentVariablesOfTheSameType () const {
416
+ return differentVariablesOfTheSameType;
417
+ }
418
+
415
419
Commands::RunTestsCommands::RunTestsCommands (Commands::MainCommands &commands) {
416
420
runCommand = commands.getRunTestsCommand ();
417
421
Original file line number Diff line number Diff line change @@ -245,6 +245,8 @@ namespace Commands {
245
245
246
246
[[nodiscard]] ErrorMode getErrorMode () const ;
247
247
248
+ [[nodiscard]] bool doDifferentVariablesOfTheSameType () const ;
249
+
248
250
private:
249
251
CLI::Option_group *settingsContextOptions;
250
252
bool generateForStaticFunctions = true ;
@@ -254,6 +256,7 @@ namespace Commands {
254
256
bool noDeterministicSearcher = false ;
255
257
bool noStubs = false ;
256
258
ErrorMode errorMode = ErrorMode::FAILING;
259
+ bool differentVariablesOfTheSameType = false ;
257
260
};
258
261
};
259
262
You can’t perform that action at this time.
0 commit comments