Skip to content

Commit

Permalink
File missing from previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mapgccv committed Aug 20, 2024
1 parent c3403f3 commit 9a44391
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/solver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1068,7 +1068,7 @@ void BasicSolver::ParseOptionString(
}
}

bool BasicSolver::ParseOptions(char **argv, unsigned flags, const ASLProblem *) {
bool BasicSolver::ParseOptions(char **argv, unsigned flags, const ASLProblem *, char* additional_options) {
has_errors_ = false;
bool_options_ &= ~SHOW_VERSION;
option_flag_save_ = flags;
Expand Down Expand Up @@ -1107,6 +1107,8 @@ bool BasicSolver::ParseOptions(char **argv, unsigned flags, const ASLProblem *)
ParseOptionString(s, flags);
}
}
if (additional_options)
ParseOptionString(additional_options, 0);
if ((bool_options_ & SHOW_VERSION) != 0)
ShowVersion();
return !has_errors_;
Expand Down

0 comments on commit 9a44391

Please sign in to comment.