summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGereon Kremer <nafur42@gmail.com>2021-06-02 18:01:08 +0200
committerGitHub <noreply@github.com>2021-06-02 16:01:08 +0000
commite1d476724171293d324ea9f144d1171d9b36b571 (patch)
treecb250dc5a85851b022052c8578883e16df6efe62
parentec6fe33ab778a7bb5d2d016b799b1918b90fc338 (diff)
Use proper variable name (#6670)
This PR fixes the driver which used an incorrect variable name in competition mode.
-rw-r--r--src/main/driver_unified.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/driver_unified.cpp b/src/main/driver_unified.cpp
index 5785505d0..79c98924a 100644
--- a/src/main/driver_unified.cpp
+++ b/src/main/driver_unified.cpp
@@ -497,9 +497,9 @@ int runCvc5(int argc, char* argv[], Options& opts)
}
#ifdef CVC5_COMPETITION_MODE
- if (cvc5::options::getOut(options) != nullptr)
+ if (cvc5::options::getOut(opts) != nullptr)
{
- cvc5::options::getOut(options) << std::flush;
+ cvc5::options::getOut(opts) << std::flush;
}
// exit, don't return (don't want destructors to run)
// _exit() from unistd.h doesn't run global destructors
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback