Skip to content

Commit fe50b39

Browse files
committed
naive_tests_fix_try_2
1 parent 5472e4e commit fe50b39

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

server/src/commands/Commands.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -412,6 +412,10 @@ ErrorMode Commands::SettingsContextOptionGroup::getErrorMode() const {
412412
return errorMode;
413413
}
414414

415+
bool Commands::SettingsContextOptionGroup::doDifferentVariablesOfTheSameType() const {
416+
return differentVariablesOfTheSameType;
417+
}
418+
415419
Commands::RunTestsCommands::RunTestsCommands(Commands::MainCommands &commands) {
416420
runCommand = commands.getRunTestsCommand();
417421

server/src/commands/Commands.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,8 @@ namespace Commands {
245245

246246
[[nodiscard]] ErrorMode getErrorMode() const;
247247

248+
[[nodiscard]] bool doDifferentVariablesOfTheSameType() const;
249+
248250
private:
249251
CLI::Option_group *settingsContextOptions;
250252
bool generateForStaticFunctions = true;
@@ -254,6 +256,7 @@ namespace Commands {
254256
bool noDeterministicSearcher = false;
255257
bool noStubs = false;
256258
ErrorMode errorMode = ErrorMode::FAILING;
259+
bool differentVariablesOfTheSameType = false;
257260
};
258261
};
259262

0 commit comments

Comments
 (0)