Skip to content

Commit 4de371e

Browse files
committed
#2389: runnable: fix maybe unused warning
1 parent 9af788a commit 4de371e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/vt/runnable/make_runnable.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,10 @@ inline RunnableMaker<BaseMsgType> makeRunnableVoidTraced(
417417
bool is_threaded, HandlerType handler, NodeType from,
418418
[[maybe_unused]] trace::TraceEventIDType trace_event,
419419
[[maybe_unused]] std::size_t msg_size,
420-
uint64_t idx1, uint64_t idx2, uint64_t idx3, uint64_t idx4
420+
[[maybe_unused]] uint64_t idx1,
421+
[[maybe_unused]] uint64_t idx2,
422+
[[maybe_unused]] uint64_t idx3,
423+
[[maybe_unused]] uint64_t idx4
421424
) {
422425
// These are currently only types of registry entries that can be void
423426
auto r = new RunnableNew(is_threaded);

0 commit comments

Comments
 (0)