summaryrefslogtreecommitdiff
path: root/src/prop
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-04-13 06:25:37 +0000
committerMorgan Deters <mdeters@gmail.com>2011-04-13 06:25:37 +0000
commitbd371052ec912fc8953a6baab797c3c62b56ef2d (patch)
treefed1b22ac9fe82c5d297c1ba9e95a31359f136b4 /src/prop
parent98e145ca4a1dc0093fff8f25c2dcbb03c7f2baa4 (diff)
fix compiler warning in non-replay builds
Diffstat (limited to 'src/prop')
-rw-r--r--src/prop/sat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prop/sat.cpp b/src/prop/sat.cpp
index a6adecb1d..40c17e016 100644
--- a/src/prop/sat.cpp
+++ b/src/prop/sat.cpp
@@ -116,8 +116,8 @@ SatLiteral SatSolver::getNextReplayDecision() {
return d_cnfStream->getLiteral(e);
}
}
- return Minisat::lit_Undef;
#endif /* CVC4_REPLAY */
+ return Minisat::lit_Undef;
}
void SatSolver::logDecision(SatLiteral lit) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback