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