| Index: Source/wtf/RefCountedLeakCounter.h
|
| diff --git a/Source/wtf/RefCountedLeakCounter.h b/Source/wtf/RefCountedLeakCounter.h
|
| index 8e42c7c5b09ab0dd968fd8b835b86f979478ed49..2284dd7f9999412b2828eb8f11d2c97eabfec476 100644
|
| --- a/Source/wtf/RefCountedLeakCounter.h
|
| +++ b/Source/wtf/RefCountedLeakCounter.h
|
| @@ -21,6 +21,7 @@
|
| #ifndef RefCountedLeakCounter_h
|
| #define RefCountedLeakCounter_h
|
|
|
| +#include "wtf/Assertions.h"
|
| #include "wtf/WTFExport.h"
|
|
|
| namespace WTF {
|
| @@ -35,7 +36,7 @@ namespace WTF {
|
| void increment();
|
| void decrement();
|
|
|
| -#ifndef NDEBUG
|
| +#if ENABLE(ASSERT)
|
| private:
|
| volatile int m_count;
|
| const char* m_description;
|
|
|