Data::getSize now uses size_t instead of int

This commit is contained in:
Alex Szpakowski
2014-03-18 03:50:00 -03:00
parent aba17607aa
commit 50916825d0
12 changed files with 42 additions and 46 deletions
+4 -1
View File
@@ -25,6 +25,9 @@
#include "config.h"
#include "Object.h"
// C
#include <stddef.h>
namespace love
{
@@ -49,7 +52,7 @@ public:
/**
* Gets the size of the Data in bytes.
**/
virtual int getSize() const = 0;
virtual size_t getSize() const = 0;
}; // Data