From 53b8499f48a00dc876d56c76fbc79aafe5803529 Mon Sep 17 00:00:00 2001 From: Kshitij Bansal Date: Fri, 21 Feb 2014 04:58:31 -0500 Subject: [PATCH] fix a -Wunused --- src/theory/quantifiers/inst_match.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); -- 2.30.2