base: Silence unused arg warning in rpc_server.h

The msg argument in Genode::Rpc_dispatcher::_read_arg is not used. GCC
does not care about this, but clang does and prints a warning regaring
this. Silence it by removing unused argument name.

fixup! base: Silence unused arg warning in rpc_server.h
This commit is contained in:
Piotr Tworek 2020-10-28 00:56:30 +01:00 committed by Christian Helmuth
parent 30b8f4efc8
commit c0309a634e

View File

@ -99,7 +99,7 @@ class Genode::Rpc_dispatcher : public RPC_INTERFACE
}
template <typename ARG>
ARG _read_arg(Ipc_unmarshaller &msg, Rpc_arg_out)
ARG _read_arg(Ipc_unmarshaller &, Rpc_arg_out)
{
return ARG();
}