Skip to content

Commit

Permalink
#2264: fix unused variable warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
cz4rs committed May 14, 2024
1 parent e8f7a1f commit e3eee52
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/vt/messaging/active.cc
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,9 @@ void ActiveMessenger::startup() {
/*virtual*/ ActiveMessenger::~ActiveMessenger() {}

trace::TraceEventIDType ActiveMessenger::makeTraceCreationSend(
HandlerType const handler, ByteType serialized_msg_size, bool is_bcast
[[maybe_unused]] HandlerType const handler,
[[maybe_unused]] ByteType serialized_msg_size,
[[maybe_unused]] bool is_bcast
) {
#if vt_check_enabled(trace_enabled)
trace::TraceEntryIDType ep = auto_registry::handlerTraceID(handler);
Expand Down

0 comments on commit e3eee52

Please sign in to comment.