Skip to content

Commit

Permalink
#2389: runnable: fix maybe unused warning
Browse files Browse the repository at this point in the history
  • Loading branch information
lifflander committed Feb 14, 2025
1 parent 69a56af commit dfb53e7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/vt/runnable/make_runnable.h
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,10 @@ inline RunnableMaker<BaseMsgType> makeRunnableVoidTraced(
bool is_threaded, HandlerType handler, NodeType from,
[[maybe_unused]] trace::TraceEventIDType trace_event,
[[maybe_unused]] std::size_t msg_size,
uint64_t idx1, uint64_t idx2, uint64_t idx3, uint64_t idx4
[[maybe_unused]] uint64_t idx1,
[[maybe_unused]] uint64_t idx2,
[[maybe_unused]] uint64_t idx3,
[[maybe_unused]] uint64_t idx4
) {
// These are currently only types of registry entries that can be void
auto r = new RunnableNew(is_threaded);
Expand Down

0 comments on commit dfb53e7

Please sign in to comment.