--- rxvt-unicode/src/rxvtutil.h 2012/06/28 15:19:15 1.58 +++ rxvt-unicode/src/rxvtutil.h 2014/10/23 22:39:40 1.59 @@ -90,14 +90,14 @@ #endif inline void * -operator new (size_t size) +operator new (size_t size) throw (std::bad_alloc) { // TODO: use rxvt_malloc return malloc (size); } inline void -operator delete (void *p) +operator delete (void *p) throw () { free (p); }