Skip to content

Commit

Permalink
[ORC] Silence a buggy GCC unused argument warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
lhames committed Sep 3, 2021
1 parent 02fe58d commit 1ece14b
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,7 @@ class WrapperFunctionAsyncHandlerHelper<RetT(SendResultT, ArgTs...),
static void callAsync(HandlerT &&H,
SerializeAndSendResultT &&SerializeAndSendResult,
ArgTupleT Args, std::index_sequence<I...>) {
(void)Args; // Silence a buggy GCC warning.
return std::forward<HandlerT>(H)(std::move(SerializeAndSendResult),
std::move(std::get<I>(Args))...);
}
Expand Down

0 comments on commit 1ece14b

Please sign in to comment.