summaryrefslogtreecommitdiff
path: root/src/theory
diff options
context:
space:
mode:
authorKshitij Bansal <kshitij@cs.nyu.edu>2014-02-21 04:58:31 -0500
committerKshitij Bansal <kshitij@cs.nyu.edu>2014-02-21 05:06:55 -0500
commit53b8499f48a00dc876d56c76fbc79aafe5803529 (patch)
tree928e2c213efc678cc99ed769022f3e344d99d7bb /src/theory
parent0434611785c169a1ca26f89ab3a3cb40b855390d (diff)
fix a -Wunused
Diffstat (limited to 'src/theory')
-rw-r--r--src/theory/quantifiers/inst_match.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/inst_match.cpp b/src/theory/quantifiers/inst_match.cpp
index e72e19119..4a23f1c97 100644
--- a/src/theory/quantifiers/inst_match.cpp
+++ b/src/theory/quantifiers/inst_match.cpp
@@ -255,7 +255,7 @@ bool CDInstMatchTrie::addInstMatch( QuantifiersEngine* qe, Node f, std::vector<
}
if( !onlyExist ){
- std::map< Node, CDInstMatchTrie* >::iterator it = d_data.find( n );
+ // std::map< Node, CDInstMatchTrie* >::iterator it = d_data.find( n );
CDInstMatchTrie* imt = new CDInstMatchTrie( c );
d_data[n] = imt;
imt->addInstMatch( qe, f, m, c, modEq, modInst, index+1, false );
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback