From 549360b04b314ccc9cf0900026e7c48fa7828e0f Mon Sep 17 00:00:00 2001 From: yamasaki <114902604+ymski@users.noreply.github.com> Date: Thu, 25 May 2023 11:54:39 +0900 Subject: [PATCH] fix: compile error Signed-off-by: yamasaki <114902604+ymski@users.noreply.github.com> --- CARET_trace/src/ros_trace_points.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/CARET_trace/src/ros_trace_points.cpp b/CARET_trace/src/ros_trace_points.cpp index 5a117b95..984abe6d 100644 --- a/CARET_trace/src/ros_trace_points.cpp +++ b/CARET_trace/src/ros_trace_points.cpp @@ -459,10 +459,10 @@ void ros_trace_dispatch_subscription_callback( const uint64_t source_timestamp, const uint64_t message_timestamp) { - (void) message - (void) callback - (void) source_timestamp - (void) message_timestamp + (void) message; + (void) callback; + (void) source_timestamp; + (void) message_timestamp; // #ifdef DEBUG_OUTPUT // std::cerr << "dispatch_subscription_callback," << @@ -471,7 +471,6 @@ void ros_trace_dispatch_subscription_callback( // source_timestamp << "," << // message_timestamp << std::endl; // #endif - } } void ros_trace_dispatch_intra_process_subscription_callback(