mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-11 07:19:20 +00:00
Fixed compiler warnings
This commit is contained in:
@ -90,6 +90,9 @@ namespace InterProcessCommunication
|
||||
handle->Listening = 1;
|
||||
handle->Error = IPCSuccess;
|
||||
|
||||
// FIXME: ID is not used.
|
||||
UNUSED(ID);
|
||||
|
||||
return IPCError{IPCSuccess};
|
||||
}
|
||||
|
||||
|
@ -45,12 +45,14 @@ namespace Tasking
|
||||
bool Security::UntrustToken(Token token)
|
||||
{
|
||||
fixme("UntrustToken->false");
|
||||
UNUSED(token);
|
||||
return false;
|
||||
}
|
||||
|
||||
bool Security::DestroyToken(Token token)
|
||||
{
|
||||
fixme("DestroyToken->false");
|
||||
UNUSED(token);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user