| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 8b8fe87 commit fa6dfec
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -38,7 +38,7 @@ | |||
| 38 | 38 | ||
| 39 | 39 | # Reset this number to 0 on major V8 upgrades. | |
| 40 | 40 | # Increment by one for each non-official patch applied to deps/v8. | |
| 41 | - 'v8_embedder_string': '-node.5', | ||
| 41 | + 'v8_embedder_string': '-node.6', | ||
| 42 | 42 | ||
| 43 | 43 | ##### V8 defaults for Node.js ##### | |
| 44 | 44 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -8940,7 +8940,8 @@ std::unique_ptr<MicrotaskQueue> MicrotaskQueue::New(Isolate* isolate, | |||
| 8940 | 8940 | auto microtask_queue = | |
| 8941 | 8941 | i::MicrotaskQueue::New(reinterpret_cast<i::Isolate*>(isolate)); | |
| 8942 | 8942 | microtask_queue->set_microtasks_policy(policy); | |
| 8943 | - return microtask_queue; | ||
| 8943 | + std::unique_ptr<MicrotaskQueue> ret(std::move(microtask_queue)); | ||
| 8944 | + return ret; | ||
| 8944 | 8945 | } | |
| 8945 | 8946 | ||
| 8946 | 8947 | MicrotasksScope::MicrotasksScope(Isolate* isolate, MicrotasksScope::Type type) | |
| Back | FazBrowse Home | New Git URL |
0 commit comments