From 7619b599f2cc043f7c6d3f518507758589f8841e Mon Sep 17 00:00:00 2001 From: jikun Date: Tue, 25 Nov 2025 14:10:35 +0800 Subject: [PATCH] Fix syntax error in routing_manager_stub.cpp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit vsomeip/implementation/routing/src/routing_manager_stub.cpp:685:2: error: extra ‘;’ [-Werror=pedantic] 685 | }; | ^ cc1plus: error: unrecognized command line option ‘-Wno-inconsistent-missing-override’ [-Werror] cc1plus: error: unrecognized command line option ‘-Wno-tsan’ [-Werror] cc1plus: all warnings being treated as errors fix build error --- implementation/routing/src/routing_manager_stub.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/implementation/routing/src/routing_manager_stub.cpp b/implementation/routing/src/routing_manager_stub.cpp index da7506871..b0149c842 100644 --- a/implementation/routing/src/routing_manager_stub.cpp +++ b/implementation/routing/src/routing_manager_stub.cpp @@ -682,7 +682,7 @@ void routing_manager_stub::add_known_client(client_t _client, const std::string& client_t routing_manager_stub::get_guest_by_address(const boost::asio::ip::address& _address, port_t _port) const { return host_->get_guest_by_address(_address, _port); -}; +} void routing_manager_stub::add_guest(client_t _client, const boost::asio::ip::address& _address, port_t _port) { host_->add_guest(_client, _address, _port);