summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/smallvec_type.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/smallvec_type.hpp b/src/core/smallvec_type.hpp
index 832ba4792..0a5c982cd 100644
--- a/src/core/smallvec_type.hpp
+++ b/src/core/smallvec_type.hpp
@@ -79,9 +79,9 @@ public:
* @param to_add the number of items to append
* @return pointer to newly allocated item
*/
- FORCEINLINE T *Append(size_t to_add = 1)
+ FORCEINLINE T *Append(uint to_add = 1)
{
- size_t begin = this->items;
+ uint begin = this->items;
this->items += to_add;
if (this->items > this->capacity) {