From 336a354445bdc77ac2c3b4ec64adfe6445ba3040 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 (synced from b14e41d057adef77cbe053d6655d87e953e978fc) --- src/ox/fs/filesystem/filelocation.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ox/fs/filesystem/filelocation.hpp b/src/ox/fs/filesystem/filelocation.hpp index 790db5682..05c86c42d 100644 --- a/src/ox/fs/filesystem/filelocation.hpp +++ b/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;