Everywhere: Remove unnecessary AK and Detail namespace scoping

This commit is contained in:
Moustafa Raafat 2022-11-14 18:25:18 +00:00 committed by Sam Atkins
commit b8f1e1bed2
Notes: sideshowbarker 2024-07-17 03:36:18 +09:00
10 changed files with 13 additions and 13 deletions

View file

@ -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();
}