mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
6743059: Error in spaceDecorator.cpp "optimized" build
Changed the guard on the definition of the method value in HeapWord from ASSERT to not PRODUCT. Reviewed-by: iveresov, apetrusenko
This commit is contained in:
parent
d9929c525b
commit
6358686351
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ class HeapWord {
|
||||||
friend class VMStructs;
|
friend class VMStructs;
|
||||||
private:
|
private:
|
||||||
char* i;
|
char* i;
|
||||||
#ifdef ASSERT
|
#ifndef PRODUCT
|
||||||
public:
|
public:
|
||||||
char* value() { return i; }
|
char* value() { return i; }
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue