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

Unified Diff: src/types.h

Issue 194893002: Silence Win warnings (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 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: src/types.h
diff --git a/src/types.h b/src/types.h
index 5d3585a8cd8a9caff3837b4cc08a67dee911d992..20371a9ba2390e8e8ea52605c4b0c750b738c53b 100644
--- a/src/types.h
+++ b/src/types.h
@@ -444,7 +444,7 @@ struct ZoneTypeConfig {
}
static int lub_bitset(Type* type) {
ASSERT(is_class(type) || is_constant(type));
- return tagged_get<intptr_t>(as_tagged(type), 0);
+ return static_cast<int>(tagged_get<intptr_t>(as_tagged(type), 0));
}
};
« 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