Adding a missing delete to smt2_compliance.
authorTim King <taking@google.com>
Mon, 23 Nov 2015 21:27:14 +0000 (13:27 -0800)
committerTim King <taking@google.com>
Tue, 24 Nov 2015 04:40:56 +0000 (20:40 -0800)
test/system/smt2_compliance.cpp

index 593123426a898cf62658251c9f194fb527711829..f754adc0efeae5e5fbeccdebd90d7e883fd97f9e 100644 (file)
@@ -67,6 +67,6 @@ void testGetInfo(SmtEngine& smt, const char* s) {
   c->invoke(&smt, ss);
   assert(p->nextCommand() == NULL);
   delete p;
-
+  delete c;
   cout << ss.str() << endl << endl;
 }