| Index: Source/platform/fonts/GlyphPageTreeNode.cpp
|
| diff --git a/Source/platform/fonts/GlyphPageTreeNode.cpp b/Source/platform/fonts/GlyphPageTreeNode.cpp
|
| index baa42fc2952da4daf0ffb852d09aadb47a1728c1..cd6d0c356e4c2be726c22bd06e6b24e378f6ef8b 100644
|
| --- a/Source/platform/fonts/GlyphPageTreeNode.cpp
|
| +++ b/Source/platform/fonts/GlyphPageTreeNode.cpp
|
| @@ -61,7 +61,7 @@ GlyphPageTreeNode* GlyphPageTreeNode::getRoot(unsigned pageNumber)
|
| return foundNode;
|
|
|
| GlyphPageTreeNode* node = new GlyphPageTreeNode;
|
| -#ifndef NDEBUG
|
| +#if ENABLE(ASSERT)
|
| node->m_pageNumber = pageNumber;
|
| #endif
|
| roots->set(pageNumber, node);
|
| @@ -322,7 +322,7 @@ GlyphPageTreeNode* GlyphPageTreeNode::getChild(const FontData* fontData, unsigne
|
| curr->m_customFontCount++;
|
| }
|
|
|
| -#ifndef NDEBUG
|
| +#if ENABLE(ASSERT)
|
| child->m_pageNumber = m_pageNumber;
|
| #endif
|
| if (fontData) {
|
|
|