| Index: include/v8.h
|
| diff --git a/include/v8.h b/include/v8.h
|
| index 13e44f7b01555654a021ca1fee5a9de3b2681341..e2dee5d7b3007d9e525fec11f1bbbd94ccf49a97 100644
|
| --- a/include/v8.h
|
| +++ b/include/v8.h
|
| @@ -1045,11 +1045,7 @@ class V8_EXPORT ScriptCompiler {
|
| BufferOwned
|
| };
|
|
|
| - CachedData()
|
| - : data(NULL),
|
| - length(0),
|
| - rejected(false),
|
| - buffer_policy(BufferNotOwned) {}
|
| + CachedData() : data(NULL), length(0), buffer_policy(BufferNotOwned) {}
|
|
|
| // If buffer_policy is BufferNotOwned, the caller keeps the ownership of
|
| // data and guarantees that it stays alive until the CachedData object is
|
| @@ -1062,7 +1058,6 @@ class V8_EXPORT ScriptCompiler {
|
| // which will be called when V8 no longer needs the data.
|
| const uint8_t* data;
|
| int length;
|
| - bool rejected;
|
| BufferPolicy buffer_policy;
|
|
|
| private:
|
|
|