Index: src/d8.h |
diff --git a/src/d8.h b/src/d8.h |
index db2edb93c98e5be4650447487c4e9130fd5776c2..3edd8a730722813ea9888fe1373f4e647705834b 100644 |
--- a/src/d8.h |
+++ b/src/d8.h |
@@ -233,7 +233,8 @@ class ShellOptions { |
expected_to_throw(false), |
mock_arraybuffer_allocator(false), |
num_isolates(1), |
- isolate_sources(NULL) { } |
+ isolate_sources(NULL), |
+ icu_data_file(NULL) { } |
~ShellOptions() { |
#ifndef V8_SHARED |
@@ -258,6 +259,7 @@ class ShellOptions { |
bool mock_arraybuffer_allocator; |
int num_isolates; |
SourceGroup* isolate_sources; |
+ const char* icu_data_file; |
}; |
#ifdef V8_SHARED |