Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1437)

Unified Diff: Source/platform/heap/Visitor.h

Issue 1063703002: Oilpan: fix build after r193185. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/Visitor.h
diff --git a/Source/platform/heap/Visitor.h b/Source/platform/heap/Visitor.h
index 59eadf5329461db6ba336bb647a251ec67e3e6fe..b85c8c2dea7a1f4da6d560cdb4a287a1eb45f5fd 100644
--- a/Source/platform/heap/Visitor.h
+++ b/Source/platform/heap/Visitor.h
@@ -778,7 +778,7 @@ public:
// calls from HashTable weak processing. Remove the condition once
// it is refactored.
#if !defined(ADDRESS_SANITIZER)
- ASSERT(visitor->canTraceEagerly() || visitor->isMarked(t));
+ ASSERT(Visitor::canTraceEagerly() || visitor->isMarked(t));
#endif
if (LIKELY(Visitor::canTraceEagerly())) {
if (visitor->ensureMarked(t)) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698