summaryrefslogtreecommitdiff
path: root/src/theory
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory')
-rw-r--r--src/theory/quantifiers/model_builder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/model_builder.cpp b/src/theory/quantifiers/model_builder.cpp
index e0ab047ab..4c30f6841 100644
--- a/src/theory/quantifiers/model_builder.cpp
+++ b/src/theory/quantifiers/model_builder.cpp
@@ -763,7 +763,7 @@ void ModelEngineBuilderInstGen::getParentQuantifierMatch( InstMatch& mp, Node fp
int counter = 0;
for( size_t i=0; i<fp[0].getNumChildren(); i++ ){
Node icp = d_qe->getTermDatabase()->getInstantiationConstant( fp, i );
- if( counter<f[0].getNumChildren() ){
+ if( (int)counter< (int)f[0].getNumChildren() ){
if( fp[0][i]==f[0][counter] ){
Node ic = d_qe->getTermDatabase()->getInstantiationConstant( f, counter );
Node n = m.getValue( ic );
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback