Reviewers: Benedikt Meurer,

Description:
Silence Win warnings

[email protected]
BUG=

Please review this at https://codereview.chromium.org/194893002/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+1, -1 lines):
  M src/types.h


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));
   }
 };



--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to