1
0
Fork 0

Fixing some warnings

This commit is contained in:
Simon Grätzer 2017-04-13 18:00:13 +02:00
parent e0e00b0b6b
commit b778103cd2
3 changed files with 4 additions and 4 deletions

View File

@ -43,7 +43,7 @@ class Slice;
namespace graph {
class ShortestPathOptions;
struct ShortestPathOptions;
class ConstantWeightShortestPathFinder : public ShortestPathFinder {

View File

@ -33,7 +33,7 @@ namespace arangodb {
class ManagedDocumentResult;
namespace graph {
class BaseOptions;
struct BaseOptions;
class SingleServerEdgeCursor;
}

View File

@ -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: