diff options
author | Moustafa Raafat <MoustafaRaafat2@gmail.com> | 2022-11-14 18:25:18 +0000 |
---|---|---|
committer | Sam Atkins <atkinssj@gmail.com> | 2022-12-09 11:25:30 +0000 |
commit | b8f1e1bed2a77aadfb7b23a37ff4e3015a68dc23 (patch) | |
tree | e8a9cec49f1a823398ce907653fb7c66f6f8c10d /AK/HashTable.h | |
parent | ae2abcebbbabf7ca8b806b5555c11cd0b216dbdb (diff) | |
download | serenity-b8f1e1bed2a77aadfb7b23a37ff4e3015a68dc23.zip |
Everywhere: Remove unnecessary AK and Detail namespace scoping
Diffstat (limited to 'AK/HashTable.h')
-rw-r--r-- | AK/HashTable.h | 2 |
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(); } |