Revision: 15587
Author: [email protected]
Date: Wed Jul 10 05:01:29 2013
Log: Fix missing spaces
BUG=
[email protected]
Review URL: https://codereview.chromium.org/18991004
http://code.google.com/p/v8/source/detail?r=15587
Modified:
/branches/bleeding_edge/src/types.cc
=======================================
--- /branches/bleeding_edge/src/types.cc Wed Jul 10 04:20:00 2013
+++ /branches/bleeding_edge/src/types.cc Wed Jul 10 05:01:29 2013
@@ -506,7 +506,7 @@
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.