Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit0631b45

Browse files
committed
fixup! fixup! src: make BuiltinLoader threadsafe and non-global
1 parent2651669 commit0631b45

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

‎src/node.cc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,6 @@
126126

127127
namespacenode {
128128

129-
using builtins::BuiltinLoader;
130-
131129
using v8::EscapableHandleScope;
132130
using v8::Isolate;
133131
using v8::Local;

‎src/node_realm.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
namespacenode {
1010

11-
using builtins::BuiltinLoader;
1211
using v8::Context;
1312
using v8::EscapableHandleScope;
1413
using v8::Function;

‎src/node_threadsafe_cow.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ class ThreadsafeCopyOnWrite final {
8080

8181
private:
8282
structImpl {
83-
Impl(const T& data) : data(data) {}
84-
Impl(T&& data) : data(std::move(data)) {}
83+
explicitImpl(const T& data) : data(data) {}
84+
explicitImpl(T&& data) : data(std::move(data)) {}
8585

8686
Impl(const Impl& other);
8787
Impl&operator=(const Impl& other) =delete;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp