diff options
Diffstat (limited to 'AK/FixedArray.h')
-rw-r--r-- | AK/FixedArray.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/FixedArray.h b/AK/FixedArray.h index 0eb8a22c74..ac60f4052c 100644 --- a/AK/FixedArray.h +++ b/AK/FixedArray.h @@ -142,7 +142,7 @@ public: void swap(FixedArray<T>& other) { - ::swap(m_storage, other.m_storage); + AK::swap(m_storage, other.m_storage); } void fill_with(T const& value) |