diff options
Diffstat (limited to 'lib/Exceptions.cc')
-rw-r--r-- | lib/Exceptions.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Exceptions.cc b/lib/Exceptions.cc index e9c5861..43b77f1 100644 --- a/lib/Exceptions.cc +++ b/lib/Exceptions.cc @@ -197,7 +197,7 @@ void * Base::calloc(size_t n, size_t s) { void * Base::operator new(size_t s) { #ifdef DEBUG - cerr << "Operator new(s) called. Allocating memory.\n"; + std::cerr << "Operator new(s) called. Allocating memory.\n"; #endif return xmalloc(s); } |