From 3f1307e1cc734329f7a0a25d0a09896747496e95 Mon Sep 17 00:00:00 2001 From: Ryuta Kambe Date: Wed, 26 Jun 2024 11:52:03 +0900 Subject: [PATCH] fix(autoware_velocity_smoother): fix duplicateBreak warning Signed-off-by: Ryuta Kambe --- 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