diff options
Diffstat (limited to 'include/Exceptions.h')
-rw-r--r-- | include/Exceptions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Exceptions.h b/include/Exceptions.h index 34c1155..6e8e1db 100644 --- a/include/Exceptions.h +++ b/include/Exceptions.h @@ -35,8 +35,8 @@ class Base { public: char * strdup(const char *) const; void * malloc(ssize_t) const; -/* void * operator new(size_t); - void * operator new(size_t, void *); */ + void * operator new(size_t); + void * operator new(size_t, void *); }; class GeneralException : public Base{ |