Skip to content

Commit

Permalink
fix: compile error
Browse files Browse the repository at this point in the history
Signed-off-by: yamasaki <114902604+ymski@users.noreply.github.com>
  • Loading branch information
ymski committed May 25, 2023
1 parent 7b589ba commit 549360b
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions CARET_trace/src/ros_trace_points.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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," <<
Expand All @@ -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(
Expand Down

0 comments on commit 549360b

Please sign in to comment.