Using latest love-android branch (e263d91d136d)

This commit is contained in:
fysx
2014-04-04 11:37:36 +02:00
parent 8acfb8d91a
commit e96eef4435
87 changed files with 1070 additions and 397 deletions
+5 -2
View File
@@ -25,6 +25,9 @@
#include "config.h"
#include "Object.h"
// C
#include <stddef.h>
namespace love
{
@@ -38,7 +41,7 @@ public:
/**
* Destructor.
**/
virtual ~Data() {};
virtual ~Data() {}
/**
* Gets a pointer to the data. This pointer will obviously not
@@ -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