diff --git a/topoSortCppBFS b/topoSortCppBFS index 96ed812..6f36242 100644 --- a/topoSortCppBFS +++ b/topoSortCppBFS @@ -17,7 +17,7 @@ public: q.push(i); } } - vector topo + vector topo; while(!q.empty()) { int node = q.front(); q.pop();