From a822c95aedc4ff49372d23938fac190bd12e5c8e Mon Sep 17 00:00:00 2001 From: Jean-Roland Gosse Date: Wed, 8 Nov 2023 12:06:48 +0100 Subject: [PATCH] fix: remove extra ";" (#81) --- include/zenohcxx/impl.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/zenohcxx/impl.hxx b/include/zenohcxx/impl.hxx index 243099cc..9e0b0604 100644 --- a/include/zenohcxx/impl.hxx +++ b/include/zenohcxx/impl.hxx @@ -326,7 +326,7 @@ inline bool scout(z::ScoutingConfig&& config, ClosureHello&& callback, ErrNo& er auto cb = callback.take(); error = ::z_scout(z_move(c), z_move(cb)); return error == 0; -}; +} inline bool scout(z::ScoutingConfig&& config, ClosureHello&& callback) { ErrNo error; @@ -574,7 +574,7 @@ inline std::variant open(z::Config&& config, bool } #endif return session; -}; +} #ifdef __ZENOHCXX_ZENOHPICO inline z::Session&& z::Session::operator=(Session&& other) {