| Index: Source/WTF/wtf/AutodrainedPool.h
|
| diff --git a/Source/WTF/wtf/AutodrainedPool.h b/Source/WTF/wtf/AutodrainedPool.h
|
| index 866714dffa793bab5fa3de4b9b6dd8858ef9a9e4..078a71bea7edfcc74257df737883e3c2667eafa8 100644
|
| --- a/Source/WTF/wtf/AutodrainedPool.h
|
| +++ b/Source/WTF/wtf/AutodrainedPool.h
|
| @@ -44,14 +44,14 @@ public:
|
| WTF_EXPORT_PRIVATE void cycle();
|
|
|
| private:
|
| -#if PLATFORM(MAC)
|
| +#if OS(DARWIN)
|
| int m_iterationLimit;
|
| int m_iterationCount;
|
| NSAutoreleasePool* m_pool;
|
| #endif
|
| };
|
|
|
| -#if !PLATFORM(MAC)
|
| +#if !OS(DARWIN)
|
| inline AutodrainedPool::AutodrainedPool(int) { }
|
| inline AutodrainedPool::~AutodrainedPool() { }
|
| inline void AutodrainedPool::cycle() { }
|
|
|