diff --git a/include/engine/datafacade/internal_datafacade.hpp b/include/engine/datafacade/internal_datafacade.hpp index f671925a3..10c63d669 100644 --- a/include/engine/datafacade/internal_datafacade.hpp +++ b/include/engine/datafacade/internal_datafacade.hpp @@ -314,7 +314,7 @@ template class InternalDataFacade final : public BaseDataFacad EdgeRange GetAdjacentEdgeRange(const NodeID node) const override final { return m_query_graph->GetAdjacentEdgeRange(node); - }; + } // searches for a specific edge EdgeID FindEdge(const NodeID from, const NodeID to) const override final @@ -337,7 +337,7 @@ template class InternalDataFacade final : public BaseDataFacad util::FixedPointCoordinate GetCoordinateOfNode(const unsigned id) const override final { return m_coordinate_list->at(id); - }; + } bool EdgeIsCompressed(const unsigned id) const override final { diff --git a/include/engine/datafacade/shared_datafacade.hpp b/include/engine/datafacade/shared_datafacade.hpp index c6915e931..539b2be3a 100644 --- a/include/engine/datafacade/shared_datafacade.hpp +++ b/include/engine/datafacade/shared_datafacade.hpp @@ -353,7 +353,7 @@ template class SharedDataFacade final : public BaseDataFacade< EdgeRange GetAdjacentEdgeRange(const NodeID node) const override final { return m_query_graph->GetAdjacentEdgeRange(node); - }; + } // searches for a specific edge EdgeID FindEdge(const NodeID from, const NodeID to) const override final @@ -376,7 +376,7 @@ template class SharedDataFacade final : public BaseDataFacade< util::FixedPointCoordinate GetCoordinateOfNode(const NodeID id) const override final { return m_coordinate_list->at(id); - }; + } virtual bool EdgeIsCompressed(const unsigned id) const override final { @@ -487,7 +487,7 @@ template class SharedDataFacade final : public BaseDataFacade< unsigned GetNameIndexFromEdgeID(const unsigned id) const override final { return m_name_ID_list.at(id); - }; + } std::string get_name_for_id(const unsigned name_id) const override final { diff --git a/include/engine/plugins/trip.hpp b/include/engine/plugins/trip.hpp index 35abce2cb..02280ad9a 100644 --- a/include/engine/plugins/trip.hpp +++ b/include/engine/plugins/trip.hpp @@ -111,7 +111,7 @@ template class RoundTripPlugin final : public BasePlugin "invalid scc component range"); BOOST_ASSERT_MSG(std::is_sorted(std::begin(range), std::end(range)), "invalid component ranges"); - }; + } std::size_t GetNumberOfComponents() const { diff --git a/include/extractor/restriction_map.hpp b/include/extractor/restriction_map.hpp index 23b3ac886..3e4786797 100644 --- a/include/extractor/restriction_map.hpp +++ b/include/extractor/restriction_map.hpp @@ -76,7 +76,7 @@ namespace extractor class RestrictionMap { public: - RestrictionMap() : m_count(0){}; + RestrictionMap() : m_count(0){} RestrictionMap(const std::vector &restriction_list); // Replace end v with w in each turn restriction containing u as via node diff --git a/include/util/dist_table_wrapper.hpp b/include/util/dist_table_wrapper.hpp index 28a693938..714bceffe 100644 --- a/include/util/dist_table_wrapper.hpp +++ b/include/util/dist_table_wrapper.hpp @@ -25,7 +25,7 @@ template class DistTableWrapper BOOST_ASSERT_MSG(table.size() == 0, "table is empty"); BOOST_ASSERT_MSG(number_of_nodes_ * number_of_nodes_ <= table_.size(), "number_of_nodes_ is invalid"); - }; + } std::size_t GetNumberOfNodes() const { return number_of_nodes_; } diff --git a/include/util/matrix_graph_wrapper.hpp b/include/util/matrix_graph_wrapper.hpp index 52f7fd390..3b4ee5c5d 100644 --- a/include/util/matrix_graph_wrapper.hpp +++ b/include/util/matrix_graph_wrapper.hpp @@ -20,7 +20,7 @@ template class MatrixGraphWrapper { public: MatrixGraphWrapper(std::vector table, const std::size_t number_of_nodes) - : table_(std::move(table)), number_of_nodes_(number_of_nodes){}; + : table_(std::move(table)), number_of_nodes_(number_of_nodes){} std::size_t GetNumberOfNodes() const { return number_of_nodes_; }