| Index: src/heap.h
|
| diff --git a/src/heap.h b/src/heap.h
|
| index 7d9233b30af6de7d2f21cb0d4ad4460d635c9ded..91ae36e049295cf0a44877a495d18273840961c0 100644
|
| --- a/src/heap.h
|
| +++ b/src/heap.h
|
| @@ -550,7 +550,7 @@ class Heap {
|
| bool ConfigureHeap(int max_semi_space_size,
|
| int max_old_space_size,
|
| int max_executable_size,
|
| - int code_range_size);
|
| + size_t code_range_size);
|
| bool ConfigureHeapDefault();
|
|
|
| // Prepares the heap, setting up memory areas that are needed in the isolate
|
| @@ -1504,7 +1504,7 @@ class Heap {
|
|
|
| Object* roots_[kRootListLength];
|
|
|
| - intptr_t code_range_size_;
|
| + size_t code_range_size_;
|
| int reserved_semispace_size_;
|
| int max_semi_space_size_;
|
| int initial_semispace_size_;
|
|
|