summaryrefslogtreecommitdiff
path: root/AK/HashTable.h
diff options
context:
space:
mode:
authorMoustafa Raafat <MoustafaRaafat2@gmail.com>2022-11-14 18:25:18 +0000
committerSam Atkins <atkinssj@gmail.com>2022-12-09 11:25:30 +0000
commitb8f1e1bed2a77aadfb7b23a37ff4e3015a68dc23 (patch)
treee8a9cec49f1a823398ce907653fb7c66f6f8c10d /AK/HashTable.h
parentae2abcebbbabf7ca8b806b5555c11cd0b216dbdb (diff)
downloadserenity-b8f1e1bed2a77aadfb7b23a37ff4e3015a68dc23.zip
Everywhere: Remove unnecessary AK and Detail namespace scoping
Diffstat (limited to 'AK/HashTable.h')
-rw-r--r--AK/HashTable.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/HashTable.h b/AK/HashTable.h
index e2eee6d78a..b855eb881e 100644
--- a/AK/HashTable.h
+++ b/AK/HashTable.h
@@ -293,7 +293,7 @@ public:
{
if (m_capacity == 0)
return;
- if constexpr (!Detail::IsTriviallyDestructible<T>) {
+ if constexpr (!IsTriviallyDestructible<T>) {
for (auto* bucket : *this)
bucket->~T();
}