code cleanup: some warnings and formatting for PyMethodDef's in the BGE.

This commit is contained in:
2012-11-10 05:42:50 +00:00
parent fc2b52b837
commit 936f0388e8
13 changed files with 38 additions and 35 deletions

View File

@@ -28,6 +28,9 @@
#include <new>
#include "../MEM_guardedalloc.h"
void *operator new(size_t size, const char *str) throw(std::bad_alloc);
void *operator new[](size_t size, const char *str) throw(std::bad_alloc);
/* not default but can be used when needing to set a string */
void *operator new(size_t size, const char *str) throw(std::bad_alloc)
{