From 4be4c3c228bde12dc76b35ef78806a1fbd50bbb3 Mon Sep 17 00:00:00 2001 From: Jan Steemann Date: Wed, 29 Apr 2015 17:54:09 +0200 Subject: [PATCH] fix broken build --- arangod/Aql/ExecutionBlock.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arangod/Aql/ExecutionBlock.cpp b/arangod/Aql/ExecutionBlock.cpp index 69bb8a1520..50b35f0bc4 100644 --- a/arangod/Aql/ExecutionBlock.cpp +++ b/arangod/Aql/ExecutionBlock.cpp @@ -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 } }