From 78666220e084a9fda7f452b96804c2b2dd71ee91 Mon Sep 17 00:00:00 2001 From: Ryuta Kambe Date: Wed, 26 Jun 2024 15:35:29 +0900 Subject: [PATCH] fix(autoware_velocity_smoother): fix duplicateBreak warning (#7699) Signed-off-by: Ryuta Kambe Signed-off-by: palas21 --- planning/autoware_velocity_smoother/src/node.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/planning/autoware_velocity_smoother/src/node.cpp b/planning/autoware_velocity_smoother/src/node.cpp index aefbd9ef20f84..5c66f5b906bba 100644 --- a/planning/autoware_velocity_smoother/src/node.cpp +++ b/planning/autoware_velocity_smoother/src/node.cpp @@ -1013,7 +1013,6 @@ VelocitySmootherNode::AlgorithmType VelocitySmootherNode::getAlgorithmType( } throw std::domain_error("[VelocitySmootherNode] undesired algorithm is selected."); - return AlgorithmType::INVALID; } double VelocitySmootherNode::calcTravelDistance() const