Everywhere: Run clang-format

The following command was used to clang-format these files:

    clang-format-20 -i $(find . \
        -not \( -path "./\.*" -prune \) \
        -not \( -path "./Base/*" -prune \) \
        -not \( -path "./Build/*" -prune \) \
        -not \( -path "./Toolchain/*" -prune \) \
        -not \( -path "./Ports/*" -prune \) \
        -type f -name "*.cpp" -o -name "*.mm" -o -name "*.h")
This commit is contained in:
Lucas CHOLLET
2025-10-08 15:24:03 +02:00
committed by Tim Schumacher
parent 8a3f29fe9e
commit 0ff1f39b8b
121 changed files with 471 additions and 412 deletions

View File

@@ -12,7 +12,9 @@ namespace Kernel {
static constexpr size_t max_blocks_in_view = 16384; // 2^14
Ext2FSBlockView::Ext2FSBlockView(Ext2FSInode& inode)
: m_inode(inode) {};
: m_inode(inode)
{
}
ErrorOr<void> Ext2FSBlockView::ensure_block(BlockBasedFileSystem::BlockIndex block)
{