diff options
Diffstat (limited to 'include/core/PoolArrays.hpp')
| -rw-r--r-- | include/core/PoolArrays.hpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/core/PoolArrays.hpp b/include/core/PoolArrays.hpp index 1513c09..78a370d 100644 --- a/include/core/PoolArrays.hpp +++ b/include/core/PoolArrays.hpp @@ -106,7 +106,7 @@ public: uint8_t operator [](const int idx); - int size(); + int size() const; ~PoolByteArray(); }; @@ -202,7 +202,7 @@ public: int operator [](const int idx); - int size(); + int size() const; ~PoolIntArray(); }; @@ -298,7 +298,7 @@ public: real_t operator [](const int idx); - int size(); + int size() const; ~PoolRealArray(); }; @@ -394,7 +394,7 @@ public: String operator [](const int idx); - int size(); + int size() const; ~PoolStringArray(); }; @@ -491,7 +491,7 @@ public: Vector2 operator [](const int idx); - int size(); + int size() const; ~PoolVector2Array(); }; @@ -587,7 +587,7 @@ public: Vector3 operator [](const int idx); - int size(); + int size() const; ~PoolVector3Array(); }; @@ -683,7 +683,7 @@ public: Color operator [](const int idx); - int size(); + int size() const; ~PoolColorArray(); }; |
