1
0
Fork 0

Merge branch 'devel' into ClustUp1

This commit is contained in:
Max Neunhoeffer 2015-12-07 14:18:06 +01:00
commit c5a09c82d0
2 changed files with 0 additions and 3 deletions

View File

@ -157,7 +157,6 @@ class Parser {
if (options->clearBuilderBeforeParse) {
_b->clear();
}
_b->options = options;
return parseInternal(multi);
}

View File

@ -38,8 +38,6 @@ using namespace arangodb::velocypack;
// build the result (build phase).
ValueLength Parser::parseInternal(bool multi) {
_b->options = options; // copy over options
// skip over optional BOM
if (_size >= 3 && _start[0] == 0xef && _start[1] == 0xbb &&
_start[2] == 0xbf) {