mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 03:24:38 +02:00
7191124: Optimized build is broken due to inconsistent use of DEBUG_ONLY and NOT_PRODUCT macros in NMT
Updated all related variables and methods to use NOT_PRODUCT macros Reviewed-by: coleenp, acorn, kvn
This commit is contained in:
parent
c99e9bbc0f
commit
5bc134a53b
6 changed files with 29 additions and 29 deletions
|
@ -73,7 +73,7 @@ template <class E, int SIZE> class FixedSizeMemPointerArray :
|
|||
return sizeof(FixedSizeMemPointerArray<E, SIZE>);
|
||||
}
|
||||
|
||||
debug_only(int capacity() const { return SIZE; })
|
||||
NOT_PRODUCT(int capacity() const { return SIZE; })
|
||||
|
||||
public:
|
||||
// implementation of public interface
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue