From b14e41d057adef77cbe053d6655d87e953e978fc Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 29 Jul 2022 21:37:58 -0500 Subject: [PATCH] [ox/fs] Change FileAddress default type from Inode to None --- deps/ox/src/ox/fs/filesystem/filelocation.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/ox/src/ox/fs/filesystem/filelocation.hpp b/deps/ox/src/ox/fs/filesystem/filelocation.hpp index 790db568..05c86c42 100644 --- a/deps/ox/src/ox/fs/filesystem/filelocation.hpp +++ b/deps/ox/src/ox/fs/filesystem/filelocation.hpp @@ -46,7 +46,7 @@ class FileAddress { public: constexpr FileAddress() noexcept { m_data.inode = 0; - m_type = FileAddressType::Inode; + m_type = FileAddressType::None; } FileAddress(const FileAddress &other) noexcept;