File tree Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 126
126
127
127
namespace node {
128
128
129
- using builtins::BuiltinLoader;
130
-
131
129
using v8::EscapableHandleScope;
132
130
using v8::Isolate;
133
131
using v8::Local;
Original file line number Diff line number Diff line change 8
8
9
9
namespace node {
10
10
11
- using builtins::BuiltinLoader;
12
11
using v8::Context;
13
12
using v8::EscapableHandleScope;
14
13
using v8::Function;
Original file line number Diff line number Diff line change @@ -80,8 +80,8 @@ class ThreadsafeCopyOnWrite final {
80
80
81
81
private:
82
82
struct Impl {
83
- Impl (const T& data) : data(data) {}
84
- Impl (T&& data) : data(std::move(data)) {}
83
+ explicit Impl (const T& data) : data(data) {}
84
+ explicit Impl (T&& data) : data(std::move(data)) {}
85
85
86
86
Impl (const Impl& other);
87
87
Impl& operator =(const Impl& other) = delete ;
You can’t perform that action at this time.
0 commit comments