summaryrefslogtreecommitdiff
path: root/Kernel/VM/RangeAllocator.cpp
diff options
context:
space:
mode:
authorBrian Gianforcaro <bgianf@serenityos.org>2021-07-17 02:45:03 -0700
committerAndreas Kling <kling@serenityos.org>2021-07-17 13:02:09 +0200
commiteb282ad410b924ab39b8ce91cc5974efdd5b9ff2 (patch)
treeb2614b83720da11e8a71c7bd5cfed4815000fcb7 /Kernel/VM/RangeAllocator.cpp
parent24bd664980581afe07c0627da14c0f1ef10ecf37 (diff)
downloadserenity-eb282ad410b924ab39b8ce91cc5974efdd5b9ff2.zip
Kernel: Declare VM/RangeAllocator trivial destructor as default
This is a clang tidy recommendation.
Diffstat (limited to 'Kernel/VM/RangeAllocator.cpp')
-rw-r--r--Kernel/VM/RangeAllocator.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/Kernel/VM/RangeAllocator.cpp b/Kernel/VM/RangeAllocator.cpp
index 5497bdc669..29d9350483 100644
--- a/Kernel/VM/RangeAllocator.cpp
+++ b/Kernel/VM/RangeAllocator.cpp
@@ -33,10 +33,6 @@ void RangeAllocator::initialize_from_parent(RangeAllocator const& parent_allocat
}
}
-RangeAllocator::~RangeAllocator()
-{
-}
-
void RangeAllocator::dump() const
{
VERIFY(m_lock.is_locked());