src/share/vm/runtime/handles.cpp

changeset 6240
9b4ce069642e
parent 5614
9758d9f36299
child 6039
bd3237e0e18d
     1.1 --- a/src/share/vm/runtime/handles.cpp	Fri Sep 06 09:55:38 2013 +0100
     1.2 +++ b/src/share/vm/runtime/handles.cpp	Sat Sep 14 20:40:34 2013 +0100
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -179,11 +179,11 @@
    1.11    _thread->set_last_handle_mark(previous_handle_mark());
    1.12  }
    1.13  
    1.14 -void* HandleMark::operator new(size_t size) {
    1.15 +void* HandleMark::operator new(size_t size) throw() {
    1.16    return AllocateHeap(size, mtThread);
    1.17  }
    1.18  
    1.19 -void* HandleMark::operator new [] (size_t size) {
    1.20 +void* HandleMark::operator new [] (size_t size) throw() {
    1.21    return AllocateHeap(size, mtThread);
    1.22  }
    1.23  

mercurial