Commit dc12fbf0 authored by yangguo@chromium.org's avatar yangguo@chromium.org

Fix windows build (static_cast missing).

TBR=ishell@chromium.org

Review URL: https://codereview.chromium.org/714413005

Cr-Commit-Position: refs/heads/master@{#25278}
git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@25278 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 9f86e34e
......@@ -325,7 +325,7 @@ class IncrementalStringBuilder {
while (*u != '\0') Append(*(u++));
}
int written() { return cursor_ - start_; }
int written() { return static_cast<int>(cursor_ - start_); }
private:
DestChar* start_;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment