mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-11 01:22:12 +02:00
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:
committed by
Tim Schumacher
parent
8a3f29fe9e
commit
0ff1f39b8b
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user