src/hotspot/share/gc/z/zArray.inline.hpp
changeset 58707 810409af12f1
parent 58084 cddef3bde924
child 59249 29b0d0b61615
equal deleted inserted replaced
58706:d8e211419aaf 58707:810409af12f1
   115 
   115 
   116   // No more elements
   116   // No more elements
   117   return false;
   117   return false;
   118 }
   118 }
   119 
   119 
       
   120 template <typename T>
       
   121 inline ZArrayIterator<T>::ZArrayIterator(ZArray<T>* array) :
       
   122     ZArrayIteratorImpl<T, ZARRAY_SERIAL>(array) {}
       
   123 
       
   124 template <typename T>
       
   125 inline ZArrayParallelIterator<T>::ZArrayParallelIterator(ZArray<T>* array) :
       
   126     ZArrayIteratorImpl<T, ZARRAY_PARALLEL>(array) {}
       
   127 
   120 #endif // SHARE_GC_Z_ZARRAY_INLINE_HPP
   128 #endif // SHARE_GC_Z_ZARRAY_INLINE_HPP