fix CCArrayExt::operator[] return type

This commit is contained in:
ConfiG 2023-09-18 10:09:17 +03:00
parent 4635b21cb2
commit 07c6278253
No known key found for this signature in database
GPG key ID: 44DA1983F524C11B

View file

@ -953,7 +953,7 @@ namespace geode::cocos {
return m_arr ? m_arr->count() : 0;
}
T operator[](size_t index) {
T* operator[](size_t index) {
return static_cast<T*>(m_arr->objectAtIndex(index));
}