file_sys/directory: Make EntryType an enum class
This can trivially be an enum class rather than a regular enum, making it more strongly typed.
This commit is contained in:
parent
31daaa7911
commit
a3149536e2
2 changed files with 3 additions and 3 deletions
|
@ -15,7 +15,7 @@
|
|||
|
||||
namespace FileSys {
|
||||
|
||||
enum EntryType : u8 {
|
||||
enum class EntryType : u8 {
|
||||
Directory = 0,
|
||||
File = 1,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue