Commit 849815fa authored by loislo@chromium.org's avatar loislo@chromium.org

HeapProfiler: compile fix for win x64.

BUG=none
TBR=yangguo@chromium.org

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16738 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent be8621a4
...@@ -2698,8 +2698,8 @@ void HeapSnapshotJSONSerializer::SerializeStrings() { ...@@ -2698,8 +2698,8 @@ void HeapSnapshotJSONSerializer::SerializeStrings() {
for (HashMap::Entry* entry = strings_.Start(); for (HashMap::Entry* entry = strings_.Start();
entry != NULL; entry != NULL;
entry = strings_.Next(entry)) { entry = strings_.Next(entry)) {
sorted_strings[reinterpret_cast<uintptr_t>(entry->value)] = int index = static_cast<int>(reinterpret_cast<uintptr_t>(entry->value));
reinterpret_cast<const unsigned char*>(entry->key); sorted_strings[index] = reinterpret_cast<const unsigned char*>(entry->key);
} }
writer_->AddString("\"<dummy>\""); writer_->AddString("\"<dummy>\"");
for (int i = 1; i < sorted_strings.length(); ++i) { for (int i = 1; i < sorted_strings.length(); ++i) {
......
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