Set Index::size() const (#200)

This commit is contained in:
Iñaki Zabala 2024-08-01 00:59:09 +02:00 committed by GitHub
parent 9a3d83e177
commit 65feee0c21
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -187,7 +187,7 @@ public:
const_iterator Begin() const { return begin(); }
const_iterator End() const { return end(); }
void clear() { Clear(); }
size_type size() { return GetCount(); }
size_type size() const { return GetCount(); }
bool empty() const { return IsEmpty(); }
#endif