| Index: src/utils.h
|
| diff --git a/src/utils.h b/src/utils.h
|
| index 4c6cb4e0240df3350d07b66150fd919fb8733ecb..c45fe132b476de44fc1323166535ff9d976b6b60 100644
|
| --- a/src/utils.h
|
| +++ b/src/utils.h
|
| @@ -1150,9 +1150,9 @@ inline void MemsetPointer(T** dest, U* value, int counter) {
|
| // Simple support to read a file into a 0-terminated C-string.
|
| // The returned buffer must be freed by the caller.
|
| // On return, *exits tells whether the file existed.
|
| -Vector<const char> ReadFile(const char* filename,
|
| - bool* exists,
|
| - bool verbose = true);
|
| +V8_EXPORT_PRIVATE Vector<const char> ReadFile(const char* filename,
|
| + bool* exists,
|
| + bool verbose = true);
|
| Vector<const char> ReadFile(FILE* file,
|
| bool* exists,
|
| bool verbose = true);
|
|
|