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

Unified Diff: src/json-stringifier.h

Issue 11238060: Fix Windows 64 build. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 2 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/json-stringifier.h
diff --git a/src/json-stringifier.h b/src/json-stringifier.h
index 3c49407d5f6a86f2d3a054ddbec6947be82ecae6..4b9b0b6be9baabb8b3c30e9e6ecac98f23fcf5f7 100644
--- a/src/json-stringifier.h
+++ b/src/json-stringifier.h
@@ -587,7 +587,7 @@ void BasicJsonStringifier::SerializeStringUnchecked_(const SrcChar* src,
}
*(dest++) = '"';
- current_index_ += dest - dest_start;
+ current_index_ += static_cast<int>(dest - dest_start);
}
« 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