--- cppconn/exception.h +++ cppconn/exception.h @@ -36,10 +36,10 @@ { #define MEMORY_ALLOC_OPERATORS(Class) \ - void* operator new(size_t size) throw (std::bad_alloc) { return ::operator new(size); } \ + void* operator new(size_t size) { return ::operator new(size); } \ void* operator new(size_t, void*) throw(); \ void* operator new(size_t, const std::nothrow_t&) throw(); \ - void* operator new[](size_t) throw (std::bad_alloc); \ + void* operator new[](size_t); \ void* operator new[](size_t, void*) throw(); \ void* operator new[](size_t, const std::nothrow_t&) throw(); \ void* operator new(size_t N, std::allocator&);