We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34c2876 commit f58b32cCopy full SHA for f58b32c
src/env.h
@@ -453,9 +453,6 @@ struct DeserializeRequest {
453
v8::Global<v8::Object> holder;
454
int index;
455
InternalFieldInfoBase* info = nullptr; // Owned by the request
456
-
457
- // Move constructor
458
- DeserializeRequest(DeserializeRequest&& other) = default;
459
};
460
461
struct EnvSerializeInfo {
@@ -519,13 +516,6 @@ struct SnapshotData {
519
516
static bool FromBlob(SnapshotData* out, FILE* in);
520
517
521
518
~SnapshotData();
522
523
- SnapshotData(const SnapshotData&) = delete;
524
- SnapshotData& operator=(const SnapshotData&) = delete;
525
- SnapshotData(SnapshotData&&) = delete;
526
- SnapshotData& operator=(SnapshotData&&) = delete;
527
528
- SnapshotData() = default;
529
530
531
/**
0 commit comments