1
0
Fork 0
This commit is contained in:
Wilfried Goesgens 2019-05-27 20:47:03 +02:00 committed by Jan
parent 318e19b952
commit b442f3f6ec
2 changed files with 3 additions and 2 deletions

View File

@ -94,7 +94,7 @@ void BindParameters::stripCollectionNames(VPackSlice const& keys,
// key begins with collection name + '/', now strip it in place for
// further comparisons
result.add(VPackValue(
std::string(p + 1, static_cast<size_t>(l - static_cast<ptrdiff_t>(p - s) - 1))));
std::string(p + 1, static_cast<size_t>(l - static_cast<std::ptrdiff_t>(p - s) - 1))));
continue;
}
}

View File

@ -23,6 +23,7 @@
#ifndef ARANGOD_MMFILES_MMFILES_DATAFILE_H
#define ARANGOD_MMFILES_MMFILES_DATAFILE_H 1
#include <cstddef>
#include "Basics/Common.h"
#include "VocBase/vocbase.h"