base-linux: Drop unused member variables

The _root, _gid and _uid private member variables are not used for
anything. GCC does not care, but clang likes to complain about things
like this.

Issue #3938
This commit is contained in:
Piotr Tworek 2020-11-04 00:07:45 +01:00 committed by Christian Helmuth
parent db71cb8c63
commit 87e90d640f

View File

@ -34,10 +34,7 @@ class Genode::Native_pd_component : public Rpc_object<Linux_native_pd,
enum { ROOT_PATH_MAX_LEN = 512 };
Pd_session_component &_pd_session;
char _root[ROOT_PATH_MAX_LEN];
unsigned long _pid = 0;
unsigned _uid = 0;
unsigned _gid = 0;
void _start(Dataspace_component &ds);