Index: Source/core/inspector/AsyncCallStackTracker.cpp |
diff --git a/Source/core/inspector/AsyncCallStackTracker.cpp b/Source/core/inspector/AsyncCallStackTracker.cpp |
index 1738640bf22eac2700995f25e1ac28c497d2f800..345ef307e8e62717c9f6606af9d20b509a1d290a 100644 |
--- a/Source/core/inspector/AsyncCallStackTracker.cpp |
+++ b/Source/core/inspector/AsyncCallStackTracker.cpp |
@@ -59,7 +59,7 @@ void AsyncCallStackTracker::ExecutionContextData::contextDestroyed() |
{ |
ASSERT(executionContext()); |
OwnPtrWillBeRawPtr<ExecutionContextData> self = m_tracker->m_executionContextDataMap.take(executionContext()); |
- ASSERT(self == this); |
+ ASSERT_UNUSED(self, self == this); |
ContextLifecycleObserver::contextDestroyed(); |
} |