| Index: Source/wtf/SizeLimits.cpp
|
| diff --git a/Source/wtf/SizeLimits.cpp b/Source/wtf/SizeLimits.cpp
|
| index 85c5ed5da9313274a3331a8841a02f378e05c159..2f22f1edb68a64274368cc62ba49b4c7285e498f 100644
|
| --- a/Source/wtf/SizeLimits.cpp
|
| +++ b/Source/wtf/SizeLimits.cpp
|
| @@ -42,14 +42,14 @@
|
|
|
| namespace WTF {
|
|
|
| -#if !defined(NDEBUG) || ENABLE(SECURITY_ASSERT)
|
| +#if ENABLE(ASSERT) || ENABLE(SECURITY_ASSERT)
|
| // The debug/assertion version may get bigger.
|
| struct SameSizeAsRefCounted {
|
| int a;
|
| #if ENABLE(SECURITY_ASSERT)
|
| bool b;
|
| #endif
|
| -#if !defined(NDEBUG)
|
| +#if ENABLE(ASSERT)
|
| bool c;
|
| ThreadRestrictionVerifier d;
|
| #endif
|
|
|