mirror of https://gitee.com/bigwinds/arangodb
fixed compile error on Mac
This commit is contained in:
parent
9f63ca6d21
commit
392e8233eb
|
@ -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()) {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue