1
0
Fork 0

Fixed a memleak in ClusterTraverser

This commit is contained in:
Michael Hackstein 2015-12-03 11:35:08 +01:00
parent e6fffda489
commit 04f65ff8c1
1 changed files with 3 additions and 0 deletions

View File

@ -60,6 +60,9 @@ namespace triagens {
}
~ClusterTraverser () {
for (auto& it : _vertices) {
delete it.second;
}
}
void setStartVertex (VertexId& v) override;