| Index: Source/platform/heap/ThreadState.h
|
| diff --git a/Source/platform/heap/ThreadState.h b/Source/platform/heap/ThreadState.h
|
| index 00ce2e5979287e4bfa2f86a337ae3ca92e4064aa..96baa75ea8b44898e1aa624aa2d6753fb02d67c1 100644
|
| --- a/Source/platform/heap/ThreadState.h
|
| +++ b/Source/platform/heap/ThreadState.h
|
| @@ -313,11 +313,7 @@ public:
|
| }
|
|
|
| bool isMainThread() const { return this == mainThreadState(); }
|
| - bool checkThread() const
|
| - {
|
| - ASSERT(m_thread == currentThread());
|
| - return true;
|
| - }
|
| + void checkThread() const { ASSERT(m_thread == currentThread()); }
|
|
|
| void didV8MajorGC(bool forceGC);
|
|
|
|
|