From 1ea551f625ea9bcf82b5c12028fbe5f7c0d10fbd Mon Sep 17 00:00:00 2001 From: Shubham Gupta Date: Sat, 4 Dec 2021 18:34:04 +0530 Subject: [PATCH] semi-colon issue fixed ! --- 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();