From c9d1c12efa0ff4bc38279be58a41c654bb7473ac Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Sun, 31 Oct 2021 16:51:46 -0600 Subject: [PATCH] Kernel: Remove unused forward declaration of Syscall::StringArgument The real struct is in Kernel::Syscall::StringArgument, so the namespace was wrong anyway. But regardless, this forward declaration was unused. --- Kernel/StdLib.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Kernel/StdLib.h b/Kernel/StdLib.h index ace6221c8b..c2a933d5fb 100644 --- a/Kernel/StdLib.h +++ b/Kernel/StdLib.h @@ -14,10 +14,6 @@ #include #include -namespace Syscall { -struct StringArgument; -} - ErrorOr> try_copy_kstring_from_user(Userspace, size_t); ErrorOr