1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:57:45 +00:00

LibGfx: Remove unnecessary AK:: prefix in VectorN.h

This commit is contained in:
Matthew Olsson 2023-02-25 10:42:19 -07:00 committed by Linus Groh
parent 445011d50d
commit 8dc7810976

View file

@ -296,7 +296,7 @@ public:
constexpr auto const& data() const { return m_data; } constexpr auto const& data() const { return m_data; }
private: private:
AK::Array<T, N> m_data; Array<T, N> m_data;
}; };
} }