diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/pso/TObject.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/pso/TObject.h b/include/pso/TObject.h index c851480..3a9f097 100644 --- a/include/pso/TObject.h +++ b/include/pso/TObject.h @@ -3,6 +3,7 @@ #include "pso/forward.h" #include "pso/macros.h" +#include <stdlib.h> #include <global_types.h> #define o(name) extern const char *name##_name; @@ -66,7 +67,7 @@ public: TObject(TObject *parent = NULL); virtual ~TObject(); - void *operator new (unsigned long size) { return alloc(size); }; + void *operator new (size_t size) { return alloc(size); }; void operator delete(void *ptr) { free(ptr); }; void delete_children(); |