Browse Source

Kernel: Remove non existent friend class from Process.h

clang-tidy correctly flagged that ProcFSProcessOpenFileDescriptions
does not exist.
Brian Gianforcaro 3 years ago
parent
commit
d08a1aae63
1 changed files with 0 additions and 1 deletions
  1. 0 1
      Kernel/Process.h

+ 0 - 1
Kernel/Process.h

@@ -121,7 +121,6 @@ public:
 
     friend class Thread;
     friend class Coredump;
-    friend class ProcFSProcessOpenFileDescriptions;
 
     // Helper class to temporarily unprotect a process's protected data so you can write to it.
     class ProtectedDataMutationScope {