Index: Source/wtf/StackBounds.h |
diff --git a/Source/wtf/StackBounds.h b/Source/wtf/StackBounds.h |
index 7844cba3d09e66951d457bf61b54a6727b306dd1..069e4cf4476bbce263741ecddb261414983c695d 100644 |
--- a/Source/wtf/StackBounds.h |
+++ b/Source/wtf/StackBounds.h |
@@ -97,11 +97,7 @@ private: |
bool isGrowingDownward() const |
jamesr
2013/04/20 01:37:01
this function could also be simplified (to nothing
|
{ |
ASSERT(m_origin && m_bound); |
-#if OS(WINCE) |
- return m_origin > m_bound; |
-#else |
return true; |
-#endif |
} |
void checkConsistency() const |