Reviewers: danno,

Description:
Fix missing spaces

BUG=

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

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

Affected files:
  M src/types.cc


Index: src/types.cc
diff --git a/src/types.cc b/src/types.cc
index 2f856cf9d1c19193c9b980a883c8fbfa9099fd58..e88f9f67c59aa5087894b124cf1e12fbc8be5022 100644
--- a/src/types.cc
+++ b/src/types.cc
@@ -506,7 +506,7 @@ void Type::TypePrint(FILE* out) {
     bool first_entry = true;
     PrintF(out, "{");
     for (unsigned i = 0; i < sizeof(val)*8; ++i) {
-      int mask = (1<<i);
+      int mask = (1 << i);
       if ((val & mask) != 0) {
         if (!first_entry) PrintF(out, ",");
         first_entry = false;


--
--
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/groups/opt_out.


Reply via email to