We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8d2ba6 commit 4614f64Copy full SHA for 4614f64
src/node_env_var.cc
@@ -47,7 +47,7 @@ class MapKVStore final : public KVStore {
47
std::shared_ptr<KVStore> Clone(Isolate* isolate) const override;
48
49
MapKVStore() = default;
50
- MapKVStore(const MapKVStore& other) : map_(other.map_) {}
+ MapKVStore(const MapKVStore& other) : KVStore(), map_(other.map_) {}
51
52
private:
53
mutable Mutex mutex_;
0 commit comments