mirror of
https://github.com/genodelabs/genode.git
synced 2025-04-12 13:48:30 +00:00
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:
parent
30b8f4efc8
commit
c0309a634e
@ -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();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user