From 4d37a6992182cc70e799837907001b0f1f78c29e Mon Sep 17 00:00:00 2001 From: 97littleleaf11 <11172084+97littleleaf11@users.noreply.github.com> Date: Fri, 3 Mar 2023 03:04:05 +0800 Subject: [PATCH] Fix --- include/util/tarjan_scc.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/util/tarjan_scc.hpp b/include/util/tarjan_scc.hpp index a1466d36c..eb6170264 100644 --- a/include/util/tarjan_scc.hpp +++ b/include/util/tarjan_scc.hpp @@ -178,6 +178,6 @@ template class TarjanSCC unsigned GetComponentID(const NodeID node) const { return components_index[node]; } }; -} // namespace osrm::extractor +} // namespace osrm::util #endif /* TARJAN_SCC_HPP */