We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c824127 commit c969731Copy full SHA for c969731
src/base_object.h
@@ -40,6 +40,8 @@ class BaseObject : public MemoryRetainer {
40
inline BaseObject(Environment* env, v8::Local<v8::Object> object);
41
inline ~BaseObject() override;
42
43
+ BaseObject() = delete;
44
+
45
// Returns the wrapped object. Returns an empty handle when
46
// persistent.IsEmpty() is true.
47
inline v8::Local<v8::Object> object() const;
@@ -83,8 +85,6 @@ class BaseObject : public MemoryRetainer {
83
85
const v8::PropertyCallbackInfo<void>& info);
84
86
87
private:
- BaseObject();
-
88
v8::Local<v8::Object> WrappedObject() const override;
89
bool IsRootNode() const override;
90
static void DeleteMe(void* data);
0 commit comments