diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2020-09-18 09:49:51 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-09-25 21:18:17 +0200 |
commit | 64cc3f51d0a1d4ddc68fe9e3b5da2834eac48dae (patch) | |
tree | 8088b0dfe9a558a28137b2168414371a4fe891b6 /Kernel/PhysicalAddress.h | |
parent | fa62c5595e98a8d93d7a6e54b4eab45d9095a2c9 (diff) | |
download | serenity-64cc3f51d0a1d4ddc68fe9e3b5da2834eac48dae.zip |
Meta+Kernel: Make clang-format-10 clean
Diffstat (limited to 'Kernel/PhysicalAddress.h')
-rw-r--r-- | Kernel/PhysicalAddress.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/PhysicalAddress.h b/Kernel/PhysicalAddress.h index eab960f349..ada55c2a33 100644 --- a/Kernel/PhysicalAddress.h +++ b/Kernel/PhysicalAddress.h @@ -31,7 +31,7 @@ class PhysicalAddress { public: - PhysicalAddress() {} + PhysicalAddress() { } explicit PhysicalAddress(FlatPtr address) : m_address(address) { |