src/share/vm/code/codeBlob.hpp

changeset 5614
9758d9f36299
parent 4767
a5de0cc2f91c
child 5919
469216acdb28
     1.1 --- a/src/share/vm/code/codeBlob.hpp	Thu Aug 29 21:46:09 2013 +0200
     1.2 +++ b/src/share/vm/code/codeBlob.hpp	Thu Aug 29 18:56:29 2013 -0400
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1998, 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 @@ -209,7 +209,7 @@
    1.11    BufferBlob(const char* name, int size);
    1.12    BufferBlob(const char* name, int size, CodeBuffer* cb);
    1.13  
    1.14 -  void* operator new(size_t s, unsigned size);
    1.15 +  void* operator new(size_t s, unsigned size) throw();
    1.16  
    1.17   public:
    1.18    // Creation
    1.19 @@ -283,7 +283,7 @@
    1.20      bool        caller_must_gc_arguments
    1.21    );
    1.22  
    1.23 -  void* operator new(size_t s, unsigned size);
    1.24 +  void* operator new(size_t s, unsigned size) throw();
    1.25  
    1.26   public:
    1.27    // Creation
    1.28 @@ -321,7 +321,7 @@
    1.29    friend class VMStructs;
    1.30  
    1.31   protected:
    1.32 -  void* operator new(size_t s, unsigned size);
    1.33 +  void* operator new(size_t s, unsigned size) throw();
    1.34  
    1.35   public:
    1.36     SingletonBlob(

mercurial