src/hotspot/share/utilities/concurrentHashTable.inline.hpp
changeset 51334 cc2c79d22508
parent 50958 e0028bb6dd3d
child 51405 8b23aa7cef47
--- a/src/hotspot/share/utilities/concurrentHashTable.inline.hpp	Wed Aug 08 15:31:06 2018 +0200
+++ b/src/hotspot/share/utilities/concurrentHashTable.inline.hpp	Wed Aug 08 15:31:07 2018 +0200
@@ -999,8 +999,8 @@
 template <typename VALUE, typename CONFIG, MEMFLAGS F>
 inline ConcurrentHashTable<VALUE, CONFIG, F>::
   ConcurrentHashTable(size_t log2size, size_t log2size_limit, size_t grow_hint)
-    : _new_table(NULL), _log2_start_size(log2size),
-       _log2_size_limit(log2size_limit), _grow_hint(grow_hint),
+    : _new_table(NULL), _log2_size_limit(log2size_limit),
+       _log2_start_size(log2size), _grow_hint(grow_hint),
        _size_limit_reached(false), _resize_lock_owner(NULL),
        _invisible_epoch(0)
 {