mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
Kernel: Rename FileBackedFS => FileBackedFileSystem
This commit is contained in:
parent
07c4c89297
commit
502bbacea0
Notes:
sideshowbarker
2024-07-18 09:22:10 +09:00
Author: https://github.com/awesomekling
Commit: 502bbacea0
8 changed files with 15 additions and 15 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
||||
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
@ -8,12 +8,12 @@
|
|||
|
||||
namespace Kernel {
|
||||
|
||||
FileBackedFS::FileBackedFS(FileDescription& file_description)
|
||||
FileBackedFileSystem::FileBackedFileSystem(FileDescription& file_description)
|
||||
: m_file_description(file_description)
|
||||
{
|
||||
}
|
||||
|
||||
FileBackedFS::~FileBackedFS()
|
||||
FileBackedFileSystem::~FileBackedFileSystem()
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue