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:
Lioncash 2019-11-27 05:07:08 -05:00
parent 31daaa7911
commit a3149536e2
2 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@
namespace FileSys {
enum EntryType : u8 {
enum class EntryType : u8 {
Directory = 0,
File = 1,
};