Parcourir la source

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.
Andrew Kaster il y a 3 ans
Parent
commit
c9d1c12efa
1 fichiers modifiés avec 0 ajouts et 4 suppressions
  1. 0 4
      Kernel/StdLib.h

+ 0 - 4
Kernel/StdLib.h

@@ -14,10 +14,6 @@
 #include <Kernel/KString.h>
 #include <Kernel/UnixTypes.h>
 
-namespace Syscall {
-struct StringArgument;
-}
-
 ErrorOr<NonnullOwnPtr<Kernel::KString>> try_copy_kstring_from_user(Userspace<const char*>, size_t);
 ErrorOr<Time> copy_time_from_user(timespec const*);
 ErrorOr<Time> copy_time_from_user(timeval const*);