summaryrefslogtreecommitdiff
path: root/test/unit/prop
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2020-03-16 21:35:21 -0700
committerGitHub <noreply@github.com>2020-03-16 21:35:21 -0700
commit5c825235dd99b7c0767789db9d782e24c581ace5 (patch)
treea9990e67295d0a7354549a207739bed63375ef7f /test/unit/prop
parenteb15f0e13412935f3ec2517c5a09c169657e7c74 (diff)
SmtEngine: Convert members owned by SmtEngine to unique pointers. (#4108)
Diffstat (limited to 'test/unit/prop')
-rw-r--r--test/unit/prop/cnf_stream_white.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/prop/cnf_stream_white.h b/test/unit/prop/cnf_stream_white.h
index 62ba6f7da..b08221cf0 100644
--- a/test/unit/prop/cnf_stream_white.h
+++ b/test/unit/prop/cnf_stream_white.h
@@ -140,7 +140,7 @@ class CnfStreamWhite : public CxxTest::TestSuite {
// engine d_smt. We must ensure that d_smt is properly initialized via
// the following call, which constructs its underlying theory engine.
d_smt->finalOptionsAreSet();
- d_theoryEngine = d_smt->d_theoryEngine;
+ d_theoryEngine = d_smt->getTheoryEngine();
d_satSolver = new FakeSatSolver();
d_cnfContext = new context::Context();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback