mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 11:34:38 +02:00
7095194: G1: HeapRegion::GrainBytes, GrainWords, and CardsPerRegion should be size_t
Declare GrainBytes, GrainWords, and CardsPerRegion as size_t. Reviewed-by: jcoomes, tonyp, jmasa
This commit is contained in:
parent
a4523cfc7f
commit
6513930e7a
8 changed files with 31 additions and 38 deletions
|
@ -395,8 +395,8 @@ class HeapRegionRemSetIterator : public CHeapObj {
|
|||
// Coarse table iteration fields:
|
||||
|
||||
// Current region index;
|
||||
int _coarse_cur_region_index;
|
||||
int _coarse_cur_region_cur_card;
|
||||
int _coarse_cur_region_index;
|
||||
size_t _coarse_cur_region_cur_card;
|
||||
|
||||
bool coarse_has_next(size_t& card_index);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue