src/share/vm/memory/space.hpp

changeset 7131
d35872270666
parent 7031
ee019285a52c
child 7535
7ae4e26cb1e0
     1.1 --- a/src/share/vm/memory/space.hpp	Mon Sep 08 14:13:01 2014 +0000
     1.2 +++ b/src/share/vm/memory/space.hpp	Tue Sep 09 00:05:25 2014 +0200
     1.3 @@ -331,11 +331,10 @@
     1.4    CompactibleSpace* space;
     1.5    HeapWord* threshold;
     1.6  
     1.7 -  CompactPoint(Generation* _gen) :
     1.8 -    gen(_gen), space(NULL), threshold(0) {}
     1.9 +  CompactPoint(Generation* g = NULL) :
    1.10 +    gen(g), space(NULL), threshold(0) {}
    1.11  };
    1.12  
    1.13 -
    1.14  // A space that supports compaction operations.  This is usually, but not
    1.15  // necessarily, a space that is normally contiguous.  But, for example, a
    1.16  // free-list-based space whose normal collection is a mark-sweep without

mercurial