summaryrefslogtreecommitdiff
path: root/ACE/examples/DLL/Today.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/DLL/Today.h')
-rw-r--r--ACE/examples/DLL/Today.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/examples/DLL/Today.h b/ACE/examples/DLL/Today.h
index b59fb1ff505..6201236e78a 100644
--- a/ACE/examples/DLL/Today.h
+++ b/ACE/examples/DLL/Today.h
@@ -44,7 +44,7 @@ public:
void *operator new (size_t bytes);
// Overloaded new operator, nothrow_t variant.
void *operator new (size_t bytes, const std::nothrow_t&);
- void operator delete (void *p, const std::nothrow_t&) throw ();
+ void operator delete (void *p, const std::nothrow_t&) noexcept;
void operator delete (void *ptr);
};