8254010: GrowableArrayView::print fails to compile
Reviewed-by: stefank
This commit is contained in:
parent
6e61861740
commit
1728547270
@ -296,8 +296,8 @@ public:
|
||||
}
|
||||
|
||||
void print() {
|
||||
tty->print("Growable Array " INTPTR_FORMAT, this);
|
||||
tty->print(": length %ld (_max %ld) { ", _len, _max);
|
||||
tty->print("Growable Array " INTPTR_FORMAT, p2i(this));
|
||||
tty->print(": length %d (_max %d) { ", _len, _max);
|
||||
for (int i = 0; i < _len; i++) {
|
||||
tty->print(INTPTR_FORMAT " ", *(intptr_t*)&(_data[i]));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user