diff --git a/src/hotspot/share/utilities/growableArray.hpp b/src/hotspot/share/utilities/growableArray.hpp index bf4c6e96fc9..39118e38f5c 100644 --- a/src/hotspot/share/utilities/growableArray.hpp +++ b/src/hotspot/share/utilities/growableArray.hpp @@ -117,13 +117,13 @@ class GrowableArrayView : public GrowableArrayBase { protected: E* _data; // data array - GrowableArrayView(E* data, int capacity, int initial_len) : + GrowableArrayView(E* data, int capacity, int initial_len) : GrowableArrayBase(capacity, initial_len), _data(data) {} ~GrowableArrayView() {} public: - bool operator==(const GrowableArrayView& rhs) const { + bool operator==(const GrowableArrayView& rhs) const { if (_len != rhs._len) return false; for (int i = 0; i < _len; i++) { @@ -134,7 +134,7 @@ public: return true; } - bool operator!=(const GrowableArrayView& rhs) const { + bool operator!=(const GrowableArrayView& rhs) const { return !(*this == rhs); } @@ -351,7 +351,7 @@ template class GrowableArrayFromArray : public GrowableArrayView { public: - GrowableArrayFromArray(E* data, int len) : + GrowableArrayFromArray(E* data, int len) : GrowableArrayView(data, len, len) {} }; @@ -486,7 +486,7 @@ public: return this->at(location); } - void swap(GrowableArrayWithAllocator* other) { + void swap(GrowableArrayWithAllocator* other) { ::swap(this->_data, other->_data); ::swap(this->_len, other->_len); ::swap(this->_capacity, other->_capacity); @@ -688,8 +688,8 @@ public: // See: init_checks. template -class GrowableArray : public GrowableArrayWithAllocator > { - friend class GrowableArrayWithAllocator >; +class GrowableArray : public GrowableArrayWithAllocator> { + friend class GrowableArrayWithAllocator; friend class GrowableArrayTest; static E* allocate(int max) { @@ -737,7 +737,7 @@ public: GrowableArray() : GrowableArray(2 /* initial_capacity */) {} explicit GrowableArray(int initial_capacity) : - GrowableArrayWithAllocator >( + GrowableArrayWithAllocator( allocate(initial_capacity), initial_capacity), _metadata() { @@ -745,7 +745,7 @@ public: } GrowableArray(int initial_capacity, MEMFLAGS memflags) : - GrowableArrayWithAllocator >( + GrowableArrayWithAllocator( allocate(initial_capacity, memflags), initial_capacity), _metadata(memflags) { @@ -753,7 +753,7 @@ public: } GrowableArray(int initial_capacity, int initial_len, const E& filler) : - GrowableArrayWithAllocator >( + GrowableArrayWithAllocator( allocate(initial_capacity), initial_capacity, initial_len, filler), _metadata() { @@ -761,7 +761,7 @@ public: } GrowableArray(int initial_capacity, int initial_len, const E& filler, MEMFLAGS memflags) : - GrowableArrayWithAllocator >( + GrowableArrayWithAllocator( allocate(initial_capacity, memflags), initial_capacity, initial_len, filler), _metadata(memflags) { @@ -769,7 +769,7 @@ public: } GrowableArray(Arena* arena, int initial_capacity, int initial_len, const E& filler) : - GrowableArrayWithAllocator >( + GrowableArrayWithAllocator( allocate(initial_capacity, arena), initial_capacity, initial_len, filler), _metadata(arena) { @@ -852,15 +852,15 @@ class GrowableArrayIterator : public StackObj { public: GrowableArrayIterator() : _array(nullptr), _position(0) { } - GrowableArrayIterator& operator++() { ++_position; return *this; } - E operator*() { return _array->at(_position); } + GrowableArrayIterator& operator++() { ++_position; return *this; } + E operator*() { return _array->at(_position); } - bool operator==(const GrowableArrayIterator& rhs) { + bool operator==(const GrowableArrayIterator& rhs) { assert(_array == rhs._array, "iterator belongs to different array"); return _position == rhs._position; } - bool operator!=(const GrowableArrayIterator& rhs) { + bool operator!=(const GrowableArrayIterator& rhs) { assert(_array == rhs._array, "iterator belongs to different array"); return _position != rhs._position; }