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

Unified Diff: src/types.cc

Issue 18991004: Fix missing spaces (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 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.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;
« 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