From 7b13f688d0ae56c43a1101c6c5cbfd7c316815ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matou=C5=A1=20Vrba?= Date: Mon, 4 Dec 2023 14:20:36 +0100 Subject: [PATCH] minifix to remove Wpedantic warning --- include/mrs_lib/dynamic_reconfigure_mgr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/mrs_lib/dynamic_reconfigure_mgr.h b/include/mrs_lib/dynamic_reconfigure_mgr.h index 51d3fa9d..42f3ae87 100644 --- a/include/mrs_lib/dynamic_reconfigure_mgr.h +++ b/include/mrs_lib/dynamic_reconfigure_mgr.h @@ -233,7 +233,7 @@ class DynamicReconfigureMgr inline bool try_cast(boost::any& val, T*& out) { return (out = boost::any_cast(&val)); - }; + } template inline bool try_compare(boost::any& val, T*& to_what) { @@ -250,7 +250,7 @@ class DynamicReconfigureMgr ROS_WARN_STREAM("[" << m_node_name << "]: DynamicReconfigure value type has changed - this should not happen!"); return false; } - }; + } }; //}