From 0dc05a33c16934a5f5bf01b3ea5e377a3356e619 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 11 Aug 2019 09:27:04 +0200 Subject: [PATCH] Kernel: Remove an unused VFS function declaration --- Kernel/FileSystem/VirtualFileSystem.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Kernel/FileSystem/VirtualFileSystem.h b/Kernel/FileSystem/VirtualFileSystem.h index 01bf6627ae..29064c4a65 100644 --- a/Kernel/FileSystem/VirtualFileSystem.h +++ b/Kernel/FileSystem/VirtualFileSystem.h @@ -60,7 +60,6 @@ public: KResult mount(NonnullRefPtr&&, StringView path); KResult mount(NonnullRefPtr&&, Custody& mount_point); - KResultOr> open(RefPtr&&, int options); KResultOr> open(StringView path, int options, mode_t mode, Custody& base); KResultOr> create(StringView path, int options, mode_t mode, Custody& parent_custody); KResult mkdir(StringView path, mode_t mode, Custody& base);