From acf04665bc251c34122fda898b37640fd91644b6 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Tue, 6 Jun 2023 00:29:17 -0500 Subject: [PATCH] [ox/fs] Cleanup formatting --- deps/ox/src/ox/fs/ptrarith/nodebuffer.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deps/ox/src/ox/fs/ptrarith/nodebuffer.hpp b/deps/ox/src/ox/fs/ptrarith/nodebuffer.hpp index bb7eb9c9..92989249 100644 --- a/deps/ox/src/ox/fs/ptrarith/nodebuffer.hpp +++ b/deps/ox/src/ox/fs/ptrarith/nodebuffer.hpp @@ -25,7 +25,7 @@ class OX_PACKED NodeBuffer { LittleEndian firstItem = 0; }; - using ItemPtr = Ptr; + using ItemPtr = Ptr; class Iterator { private: @@ -268,7 +268,7 @@ template Result::ItemPtr> NodeBuffer::malloc(std::size_t size) noexcept { const auto sz = static_cast(size); oxTracef("ox::ptrarith::NodeBuffer::malloc", "Size: {}", sz); - size_t fullSize = static_cast(sz + sizeof(Item)); + size_t fullSize = static_cast(sz + sizeof(Item)); if (m_header.size - m_header.bytesUsed >= fullSize) { auto last = lastItem(); size_t addr;