1
0
Fork 0

using sorted now (#6424)

This commit is contained in:
Heiko 2018-09-10 16:57:16 +02:00 committed by Jan
parent 58027b1ca8
commit bf3a608ae9
2 changed files with 4 additions and 4 deletions

View File

@ -167,7 +167,7 @@ void Graph::insertOrphanCollections(VPackSlice const arr) {
}
}
std::unordered_set<std::string> const& Graph::vertexCollections() const {
std::set<std::string> const& Graph::vertexCollections() const {
return _vertexColls;
}

View File

@ -139,7 +139,7 @@ class Graph {
public:
/// @brief get the cids of all vertexCollections
std::unordered_set<std::string> const& vertexCollections() const;
std::set<std::string> const& vertexCollections() const;
/// @brief get the cids of all orphanCollections
std::set<std::string> const& orphanCollections() const;
@ -210,7 +210,7 @@ class Graph {
/// @brief adds one edge definition. Returns an error if the edgeDefinition
/// is already added to this graph.
ResultT<EdgeDefinition const*> addEdgeDefinition(
EdgeDefinition const& edgeDefinition);
EdgeDefinition const& edgeDefinition);
/// @brief removes one edge definition. Returns an error if the edgeDefinition
/// is not included in this graph.
@ -263,7 +263,7 @@ class Graph {
/// @brief the names of all vertexCollections
/// This includes orphans.
std::unordered_set<std::string> _vertexColls;
std::set<std::string> _vertexColls;
/// @brief the names of all orphanCollections
std::set<std::string> _orphanColls;