Skip to content

Commit

Permalink
minifix to remove Wpedantic warning
Browse files Browse the repository at this point in the history
  • Loading branch information
matemat13 committed Dec 4, 2023
1 parent f4381d7 commit 7b13f68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/mrs_lib/dynamic_reconfigure_mgr.h
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ class DynamicReconfigureMgr
inline bool try_cast(boost::any& val, T*& out)
{
return (out = boost::any_cast<T>(&val));
};
}
template <typename T>
inline bool try_compare(boost::any& val, T*& to_what)
{
Expand All @@ -250,7 +250,7 @@ class DynamicReconfigureMgr
ROS_WARN_STREAM("[" << m_node_name << "]: DynamicReconfigure value type has changed - this should not happen!");
return false;
}
};
}
};
//}

Expand Down

0 comments on commit 7b13f68

Please sign in to comment.