src/hotspot/share/classfile/classLoaderData.hpp
changeset 51334 cc2c79d22508
parent 50759 00c4edaf2017
child 51338 aa3bfacc912c
--- a/src/hotspot/share/classfile/classLoaderData.hpp	Wed Aug 08 15:31:06 2018 +0200
+++ b/src/hotspot/share/classfile/classLoaderData.hpp	Wed Aug 08 15:31:07 2018 +0200
@@ -185,7 +185,7 @@
       volatile juint _size;
       Chunk* _next;
 
-      Chunk(Chunk* c) : _next(c), _size(0) { }
+      Chunk(Chunk* c) : _size(0), _next(c) { }
     };
 
     Chunk* volatile _head;