We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a26322c commit 591a4d1Copy full SHA for 591a4d1
3 files changed
src/node.cc
@@ -126,8 +126,6 @@
126
127
namespace node {
128
129
-using builtins::BuiltinLoader;
130
-
131
using v8::EscapableHandleScope;
132
using v8::Isolate;
133
using v8::Local;
src/node_realm.cc
@@ -8,7 +8,6 @@
8
9
10
11
12
using v8::Context;
13
14
using v8::Function;
src/node_threadsafe_cow.h
@@ -80,8 +80,8 @@ class ThreadsafeCopyOnWrite final {
80
81
private:
82
struct Impl {
83
- Impl(const T& data) : data(data) {}
84
- Impl(T&& data) : data(std::move(data)) {}
+ explicit Impl(const T& data) : data(data) {}
+ explicit Impl(T&& data) : data(std::move(data)) {}
85
86
Impl(const Impl& other);
87
Impl& operator=(const Impl& other) = delete;
0 commit comments