(svn r18996) -Fix (r18993, r18994): MSVC 64 bits had somethings to complain about

This commit is contained in:
rubidium
2010-02-03 21:45:48 +00:00
parent 6b9ab65e2d
commit 416a47f9a2
3 changed files with 5 additions and 5 deletions

View File

@@ -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) {