From 9d1976969d2edb5eacd900bd67df9479a6f30087 Mon Sep 17 00:00:00 2001 From: Sahil Grewal Date: Sun, 12 Dec 2021 00:04:58 +0530 Subject: [PATCH] Update topoSortCppBFS --- topoSortCppBFS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();