diff options
author | Ali Mohammad Pur <ali.mpfard@gmail.com> | 2023-04-28 04:31:15 +0330 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-04-28 05:56:04 +0200 |
commit | d06057f88b6c6d8f629f93b097773b54bbc6ebd8 (patch) | |
tree | 00b30d42077e7a0a15ef19853e2e8b36ed57e795 /AK/FixedArray.h | |
parent | 482f7f977573799dbbd7e88fb5f2df1eb19b8fae (diff) | |
download | serenity-d06057f88b6c6d8f629f93b097773b54bbc6ebd8.zip |
AK: Don't refer to AK::swap() as ::swap()
While swap() is available in the global namespace in normal conditions,
!USING_AK_GLOBALLY will make this name unavailable in the global
namespace, making these calls fail to compile.
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) |