mirror of https://gitee.com/bigwinds/arangodb
added missing include for CLANG
This commit is contained in:
parent
c799f9c529
commit
be421504ab
|
@ -1548,7 +1548,7 @@ HIDE_UNDOC_RELATIONS = YES
|
|||
# toolkit from AT&T and Lucent Bell Labs. The other options in this section
|
||||
# have no effect if this option is set to NO (the default)
|
||||
|
||||
HAVE_DOT = YES
|
||||
HAVE_DOT = NO
|
||||
|
||||
# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is
|
||||
# allowed to run in parallel. When set to 0 (the default) doxygen will
|
||||
|
|
|
@ -537,13 +537,6 @@ static v8::Handle<v8::Value> ExecuteSkiplistQuery (v8::Arguments const& argv, st
|
|||
|
||||
ExtractSkipAndLimit(argv, 2, skip, limit);
|
||||
|
||||
if (limit < 0) {
|
||||
TRI_ReleaseCollection(collection);
|
||||
return scope.Close(v8::ThrowException(
|
||||
TRI_CreateErrorObject(TRI_ERROR_BAD_PARAMETER,
|
||||
"<limit> cannot be negative")));
|
||||
}
|
||||
|
||||
// setup result
|
||||
v8::Handle<v8::Object> result = v8::Object::New();
|
||||
|
||||
|
|
|
@ -27,9 +27,10 @@
|
|||
|
||||
#include "HttpHandler.h"
|
||||
|
||||
#include <Logger/Logger.h>
|
||||
#include <Rest/HttpRequest.h>
|
||||
#include <Rest/HttpResponse.h>
|
||||
#include "Logger/Logger.h"
|
||||
#include "HttpServer/HttpServer.h"
|
||||
#include "Rest/HttpRequest.h"
|
||||
#include "Rest/HttpResponse.h"
|
||||
|
||||
namespace triagens {
|
||||
namespace rest {
|
||||
|
|
Loading…
Reference in New Issue