summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/model_builder.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/quantifiers/model_builder.h')
-rw-r--r--src/theory/quantifiers/model_builder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/quantifiers/model_builder.h b/src/theory/quantifiers/model_builder.h
index 47de4e581..a3d239d18 100644
--- a/src/theory/quantifiers/model_builder.h
+++ b/src/theory/quantifiers/model_builder.h
@@ -123,7 +123,7 @@ protected: //helper functions
bool hasConstantDefinition( Node n );
public:
QModelBuilderIG( context::Context* c, QuantifiersEngine* qe );
- virtual ~QModelBuilderIG(){}
+ virtual ~QModelBuilderIG() throw() {}
public:
//whether to add inst-gen lemmas
virtual bool optInstGen();
@@ -192,7 +192,7 @@ protected:
void constructModelUf( FirstOrderModel* fm, Node op );
public:
QModelBuilderDefault( context::Context* c, QuantifiersEngine* qe ) : QModelBuilderIG( c, qe ){}
- ~QModelBuilderDefault(){}
+ ~QModelBuilderDefault() throw() {}
//options
bool optReconsiderFuncConstants() { return true; }
//has inst gen
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback