src/hotspot/share/memory/metaspace/virtualSpaceNode.cpp
changeset 51334 cc2c79d22508
parent 50811 f533eb5e7430
child 53970 1ad7c590a6e7
--- a/src/hotspot/share/memory/metaspace/virtualSpaceNode.cpp	Wed Aug 08 15:31:06 2018 +0200
+++ b/src/hotspot/share/memory/metaspace/virtualSpaceNode.cpp	Wed Aug 08 15:31:07 2018 +0200
@@ -57,7 +57,7 @@
 
 // byte_size is the size of the associated virtualspace.
 VirtualSpaceNode::VirtualSpaceNode(bool is_class, size_t bytes) :
-    _is_class(is_class), _top(NULL), _next(NULL), _rs(), _container_count(0), _occupancy_map(NULL) {
+    _next(NULL), _is_class(is_class), _rs(), _top(NULL), _container_count(0), _occupancy_map(NULL) {
   assert_is_aligned(bytes, Metaspace::reserve_alignment());
   bool large_pages = should_commit_large_pages_when_reserving(bytes);
   _rs = ReservedSpace(bytes, Metaspace::reserve_alignment(), large_pages);