1
0
Fork 0

added missing include for CLANG

This commit is contained in:
Frank Celler 2012-06-26 10:37:59 +02:00
parent c799f9c529
commit be421504ab
3 changed files with 5 additions and 11 deletions

View File

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

View File

@ -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();

View File

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