summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/quant_conflict_find.cpp
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2018-01-07 19:14:57 -0800
committerGitHub <noreply@github.com>2018-01-07 19:14:57 -0800
commit4ca2baa6299115f0ef46f8580534a73d17a52b66 (patch)
treef6b114b3aefcc0fd59ac8f784edfd5e0356c9509 /src/theory/quantifiers/quant_conflict_find.cpp
parent20957db27201d594a83e0e5abe77875ed4932faf (diff)
Re-ordering field initialization in QuantInfo to remove compiler warning. (#1487)
Diffstat (limited to 'src/theory/quantifiers/quant_conflict_find.cpp')
-rw-r--r--src/theory/quantifiers/quant_conflict_find.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/quant_conflict_find.cpp b/src/theory/quantifiers/quant_conflict_find.cpp
index 6c2b95a52..95f8e3093 100644
--- a/src/theory/quantifiers/quant_conflict_find.cpp
+++ b/src/theory/quantifiers/quant_conflict_find.cpp
@@ -34,7 +34,7 @@ namespace CVC4 {
namespace theory {
namespace quantifiers {
-QuantInfo::QuantInfo() : d_mg(NULL), d_unassigned_nvar(0), d_una_index(0) {}
+QuantInfo::QuantInfo() : d_unassigned_nvar(0), d_mg(NULL), d_una_index(0) {}
QuantInfo::~QuantInfo() {
delete d_mg;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback