1
0
Fork 0

fixed compile error on Mac

This commit is contained in:
Frank Celler 2017-02-12 18:32:12 +01:00
parent 9f63ca6d21
commit 392e8233eb
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ bool ClusterTraverser::getVertex(VPackSlice edge,
}
bool ClusterTraverser::getSingleVertex(VPackSlice edge, VPackSlice comp,
size_t depth, VPackSlice& result) {
uint64_t depth, VPackSlice& result) {
bool res = _vertexGetter->getSingleVertex(edge, comp, depth, result);
if (res) {
if (_vertices.find(result) == _vertices.end()) {

View File

@ -65,7 +65,7 @@ class ClusterTraverser final : public Traverser {
/// Returns true if the vertex passes filtering conditions
bool getSingleVertex(arangodb::velocypack::Slice, arangodb::velocypack::Slice,
size_t, arangodb::velocypack::Slice&) override;
uint64_t, arangodb::velocypack::Slice&) override;
//////////////////////////////////////////////////////////////////////////////
/// @brief Function to fetch the real data of a vertex into an AQLValue