1
0
Fork 0

fix broken build

This commit is contained in:
Jan Steemann 2015-04-29 17:54:09 +02:00
parent 608337cd60
commit 4be4c3c228
1 changed files with 1 additions and 1 deletions

View File

@ -1093,7 +1093,7 @@ IndexRangeBlock::IndexRangeBlock (ExecutionEngine* engine,
isConstant &= r.isConstant();
}
_anyBoundVariable |= ! isConstant;
_allBoundsConstant.emplace(isConstant); // note: emplace_back() is not supported in C++11 but only from C++14
_allBoundsConstant.push_back(isConstant); // note: emplace_back() is not supported in C++11 but only from C++14
}
}