| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent af2a560 commit 7cb5c09
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -36,7 +36,7 @@ | |||
| 36 | 36 | ||
| 37 | 37 | # Reset this number to 0 on major V8 upgrades. | |
| 38 | 38 | # Increment by one for each non-official patch applied to deps/v8. | |
| 39 | - 'v8_embedder_string': '-node.16', | ||
| 39 | + 'v8_embedder_string': '-node.17', | ||
| 40 | 40 | ||
| 41 | 41 | ##### V8 defaults for Node.js ##### | |
| 42 | 42 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5020,6 +5020,13 @@ class V8_EXPORT BackingStore : public v8::internal::BackingStoreBase { | |||
| 5020 | 5020 | */ | |
| 5021 | 5021 | bool IsShared() const; | |
| 5022 | 5022 | ||
| 5023 | + /** | ||
| 5024 | + * Prevent implicit instantiation of operator delete with size_t argument. | ||
| 5025 | + * The size_t argument would be incorrect because ptr points to the | ||
| 5026 | + * internal BackingStore object. | ||
| 5027 | + */ | ||
| 5028 | + void operator delete(void* ptr) { ::operator delete(ptr); } | ||
| 5029 | + | ||
| 5023 | 5030 | /** | |
| 5024 | 5031 | * Wrapper around ArrayBuffer::Allocator::Reallocate that preserves IsShared. | |
| 5025 | 5032 | * Assumes that the backing_store was allocated by the ArrayBuffer allocator | |
| Back | FazBrowse Home | New Git URL |
0 commit comments