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:
Lioncash
2018-08-12 16:37:38 -04:00
parent 424e90f0f5
commit cf0a7cd1c1
4 changed files with 16 additions and 10 deletions

View File

@ -23,7 +23,7 @@ class HLERequestContext;
} // namespace Kernel
namespace FileSys {
struct VfsFilesystem;
class VfsFilesystem;
}
namespace Service {