8000 fixed Windows compile errors · ezhangle/arangodb@9706a3d · GitHub
[go: up one dir, main page]

Skip to content

Commit 9706a3d

Browse files
committed
fixed Windows compile errors
1 parent 3f913f9 commit 9706a3d

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
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/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ add_library(
172172
Dispatcher/RequeueTask.cpp
173173
HttpServer/ApplicationEndpointServer.cpp
174174
HttpServer/AsyncJobManager.cpp
175-
HttpServer/GeneralServer.cpp
176175
HttpServer/HttpCommTask.cpp
177176
HttpServer/HttpHandler.cpp
178177
HttpServer/HttpHandlerFactory.cpp

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
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