summaryrefslogtreecommitdiff
path: root/src/smt/command.cpp
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2017-09-24 23:20:12 -0700
committerGitHub <noreply@github.com>2017-09-24 23:20:12 -0700
commite665b892db312e03ce9674b2a45aaca1b2dfd6ae (patch)
treee50945bbb4b3a9d13ab55f8867dd503d1863df68 /src/smt/command.cpp
parent69d511da599dc18fbf3d42571e0f23b8e1d39032 (diff)
CID 1362907: Initializing d_smtEngine to nullptr. (#1134)
Diffstat (limited to 'src/smt/command.cpp')
-rw-r--r--src/smt/command.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/smt/command.cpp b/src/smt/command.cpp
index 70302088b..c10b2c4ea 100644
--- a/src/smt/command.cpp
+++ b/src/smt/command.cpp
@@ -1258,8 +1258,8 @@ std::string GetInstantiationsCommand::getCommandName() const throw() {
/* class GetSynthSolutionCommand */
-GetSynthSolutionCommand::GetSynthSolutionCommand() throw() {
-}
+GetSynthSolutionCommand::GetSynthSolutionCommand() throw()
+ : d_smtEngine(nullptr) {}
void GetSynthSolutionCommand::invoke(SmtEngine* smtEngine) {
try {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback