mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-14 16:57:52 +00:00
vfs: Make type hierarchy objects classes instead of structs
struct should be used when the data type is very simple or otherwise has no invariants associated with it. Given these are used to form a hierarchy, class should be used instead.
This commit is contained in:
parent
edeb37b18d
commit
80ac82c9c5
4 changed files with 16 additions and 10 deletions
|
@ -23,7 +23,7 @@ class HLERequestContext;
|
|||
} // namespace Kernel
|
||||
|
||||
namespace FileSys {
|
||||
struct VfsFilesystem;
|
||||
class VfsFilesystem;
|
||||
}
|
||||
|
||||
namespace Service {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue