diff --git a/graph.h b/graph.h index c5529e4..6c754cd 100644 --- a/graph.h +++ b/graph.h @@ -2,6 +2,7 @@ #define GRAPH_H #include +#include #include #include @@ -43,7 +44,7 @@ private: void removeAllEdgesTo(const_reference destination); pointer m_data; - std::vector m_edges; + std::list m_edges; };