Reviewers: antonm,
Description:
Fix win64 build.
Please review this at http://codereview.chromium.org/6050005/
Affected files:
M src/heap.cc
Index: src/heap.cc
diff --git a/src/heap.cc b/src/heap.cc
index
9b8bea1055b7330da7c83283cc47b4718e6fd18d..cbb021cd154da807e10d1eff9b0779dfe3c32183
100644
--- a/src/heap.cc
+++ b/src/heap.cc
@@ -2552,7 +2552,7 @@ MaybeObject* Heap::AllocateExternalStringFromTwoByte(
// ASCII characters. If yes, we use a different string map.
static const size_t kAsciiCheckLengthLimit = 32;
bool is_ascii = length <= kAsciiCheckLengthLimit &&
- String::IsAscii(resource->data(), length);
+ String::IsAscii(resource->data(), static_cast<int>(length));
Map* map = is_ascii ?
Heap::external_string_with_ascii_data_map() :
Heap::external_string_map();
Object* result;
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev