8000 Merge branch 'devel' of https://github.com/arangodb/arangodb into cur… · ezhangle/arangodb@ca6801d · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ca6801d

Browse files
committed
Merge branch 'devel' of https://github.com/arangodb/arangodb into cursor-refactoring
2 parents 6dfb4d4 + 842a1e0 commit ca6801d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

arangod/Aql/ExecutionBlock.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1032,7 +1032,7 @@ IndexRangeBlock::IndexRangeBlock (ExecutionEngine* engine,
10321032
isConstant &= r.isConstant();
10331033
}
10341034
_anyBoundVariable |= ! isConstant;
1035-
_allBoundsConstant.emplace_back(isConstant);
1035+
_allBoundsConstant.push_back(isConstant);
10361036
}
10371037
}
10381038

lib/HttpServer/HttpServerJob.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ bool HttpServerJob::beginShutdown () {
193193
/// {@inheritDoc}
194194
////////////////////////////////////////////////////////////////////////////////
195195

196-
void HttpServerJob::handleError (basics::Exception const& ex) {
196+
void HttpServerJob::handleError (triagens::basics::Exception const& ex) {
197197
_handler->handleError(ex);
198198
}
199199

lib/HttpServer/HttpServerJob.h

Lines changed: 2 additions & 2 deletions
< 3870 tr class="diff-line-row">
Original file line numberDiff line numberDiff line change
@@ -172,13 +172,13 @@ namespace triagens {
172172
/// @brief shutdown in progress
173173
////////////////////////////////////////////////////////////////////////////////
174174

175-
std::atomic_bool _shutdown;
175+
std::atomic<bool> _shutdown;
176176

177177
////////////////////////////////////////////////////////////////////////////////
178178
/// @brief server is dead
179179
////////////////////////////////////////////////////////////////////////////////
180180

181-
std::atomic_bool _abandon;
181+
std::atomic<bool> _abandon;
182182

183183
////////////////////////////////////////////////////////////////////////////////
184184
/// @brief job is detached (executed without a comm-task)

0 commit comments

Comments
 (0)
0