1
0
Fork 0

Merge branch 'devel' of ssh://github.com/ArangoDB/ArangoDB into devel

This commit is contained in:
Max Neunhoeffer 2015-12-09 11:22:00 +01:00
commit 89b08bc39e
2 changed files with 5 additions and 0 deletions

View File

@ -273,3 +273,5 @@ And finally clean it up again:
If this traversal is not powerful enough for your needs, so you cannot describe your conditions as AQL filter statements you might want to look at [manually crafted traverser](../Traversals/README.md).
[See here for more traversal examples](../AqlExamples/CombiningGraphTraversals.md).

View File

@ -66,6 +66,9 @@ namespace triagens {
for (auto& it : _vertices) {
TRI_FreeJson(TRI_UNKNOWN_MEM_ZONE, it.second);
}
for (auto& it : _edges) {
TRI_FreeJson(TRI_UNKNOWN_MEM_ZONE, it.second);
}
}
void setStartVertex (VertexId const& v) override;