We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c23bbc6 commit 892e7b0Copy full SHA for 892e7b0
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