From b85a21d74e147c266c45b6c30e525fc6b77c6ae9 Mon Sep 17 00:00:00 2001 From: Christoph Froehlich Date: Mon, 4 Nov 2024 22:15:23 +0000 Subject: [PATCH] Fix wrong path in deprecation warning --- include/control_filters/low_pass_filter.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/control_filters/low_pass_filter.hpp b/include/control_filters/low_pass_filter.hpp index 68d12611..f969a4ea 100644 --- a/include/control_filters/low_pass_filter.hpp +++ b/include/control_filters/low_pass_filter.hpp @@ -22,10 +22,10 @@ // Deprecation notice #ifdef _WIN32 #pragma message( \ - "This header include is deprecated. Please update your code to use 'control_toolbox/low_pass_filter_ros.hpp' header.") //NOLINT + "This header include is deprecated. Please update your code to use 'low_pass_filter_ros.hpp' header.") //NOLINT #else #warning \ - "This header include is deprecated. Please update your code to use 'control_toolbox/low_pass_filter_ros.hpp' header." //NOLINT + "This header include is deprecated. Please update your code to use 'low_pass_filter_ros.hpp' header." //NOLINT #endif namespace control_filters