From 03c7f55fcca1eaf702f0e6559b92b1e841d74ca0 Mon Sep 17 00:00:00 2001 From: v4hn Date: Wed, 29 Jul 2020 17:45:48 +0200 Subject: [PATCH] fix unused-parameter warning --- core/src/stage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/stage.cpp b/core/src/stage.cpp index b1cd8744..61ab03c3 100644 --- a/core/src/stage.cpp +++ b/core/src/stage.cpp @@ -253,7 +253,7 @@ void Stage::reset() { impl->properties_.reset(); } -void Stage::init(const moveit::core::RobotModelConstPtr& robot_model) { +void Stage::init(const moveit::core::RobotModelConstPtr& /* robot_model */) { // init properties once from parent auto impl = pimpl(); impl->properties_.reset();