# HG changeset patch # User jmasa # Date 1220564948 25200 # Node ID a4f9ef0c03757165af86dd9cd64bae5b6cfd4c9b # Parent 5d254928c888f71352ce409c541a310587235af3 6743059: Error in spaceDecorator.cpp "optimized" build. Summary: Changed the guard on the definition of the method value in HeapWord from ASSERT to not PRODUCT. Reviewed-by: iveresov, apetrusenko diff -r 5d254928c888 -r a4f9ef0c0375 src/share/vm/utilities/globalDefinitions.hpp --- a/src/share/vm/utilities/globalDefinitions.hpp Wed Aug 27 11:20:46 2008 -0700 +++ b/src/share/vm/utilities/globalDefinitions.hpp Thu Sep 04 14:49:08 2008 -0700 @@ -99,7 +99,7 @@ friend class VMStructs; private: char* i; -#ifdef ASSERT +#ifndef PRODUCT public: char* value() { return i; } #endif