hotspot/src/share/vm/runtime/fprofiler.cpp
changeset 19696 bd5a0131bde1
parent 17000 11bf92e571a2
child 19699 1f0f30ed36e6
--- a/hotspot/src/share/vm/runtime/fprofiler.cpp	Thu Aug 29 21:46:09 2013 +0200
+++ b/hotspot/src/share/vm/runtime/fprofiler.cpp	Thu Aug 29 18:56:29 2013 -0400
@@ -264,7 +264,7 @@
 
  public:
 
-  void* operator new(size_t size, ThreadProfiler* tp);
+  void* operator new(size_t size, ThreadProfiler* tp) throw();
   void  operator delete(void* p);
 
   ProfilerNode() {
@@ -373,7 +373,7 @@
   }
 };
 
-void* ProfilerNode::operator new(size_t size, ThreadProfiler* tp){
+void* ProfilerNode::operator new(size_t size, ThreadProfiler* tp) throw() {
   void* result = (void*) tp->area_top;
   tp->area_top += size;