mirror of https://gitee.com/bigwinds/arangodb
Fixing some warnings
This commit is contained in:
parent
e0e00b0b6b
commit
b778103cd2
|
@ -43,7 +43,7 @@ class Slice;
|
|||
|
||||
namespace graph {
|
||||
|
||||
class ShortestPathOptions;
|
||||
struct ShortestPathOptions;
|
||||
|
||||
class ConstantWeightShortestPathFinder : public ShortestPathFinder {
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ namespace arangodb {
|
|||
class ManagedDocumentResult;
|
||||
|
||||
namespace graph {
|
||||
class BaseOptions;
|
||||
struct BaseOptions;
|
||||
class SingleServerEdgeCursor;
|
||||
}
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@ class TraverserDocumentCache : public TraverserCache {
|
|||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
void insertDocument(StringRef idString,
|
||||
arangodb::velocypack::Slice const& document);
|
||||
arangodb::velocypack::Slice const& document) override;
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief Throws the document referenced by the token into the filter
|
||||
|
@ -75,7 +75,7 @@ class TraverserDocumentCache : public TraverserCache {
|
|||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
bool validateFilter(StringRef idString,
|
||||
std::function<bool(arangodb::velocypack::Slice const&)> filterFunc);
|
||||
std::function<bool(arangodb::velocypack::Slice const&)> filterFunc) override;
|
||||
|
||||
protected:
|
||||
|
||||
|
|
Loading…
Reference in New Issue