summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/ephemeral_for_test
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2020-11-02 20:35:38 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-11-03 20:58:46 +0000
commitdb11ca5b1eb97b25521a80b8de8fcdafaa7cd376 (patch)
treea77d387901067da45e577b942725551651ac902c /src/mongo/db/storage/ephemeral_for_test
parent3211aae4cbd80249f6961c59c6e856ea1c49b8a5 (diff)
downloadmongo-db11ca5b1eb97b25521a80b8de8fcdafaa7cd376.tar.gz
SERVER-50201 Initialize _nodeType to be NodeType::LEAF in ephemeralForTest
Diffstat (limited to 'src/mongo/db/storage/ephemeral_for_test')
-rw-r--r--src/mongo/db/storage/ephemeral_for_test/ephemeral_for_test_radix_store.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/storage/ephemeral_for_test/ephemeral_for_test_radix_store.h b/src/mongo/db/storage/ephemeral_for_test/ephemeral_for_test_radix_store.h
index 2290fab8b8d..d4cb55dcfd3 100644
--- a/src/mongo/db/storage/ephemeral_for_test/ephemeral_for_test_radix_store.h
+++ b/src/mongo/db/storage/ephemeral_for_test/ephemeral_for_test_radix_store.h
@@ -897,7 +897,7 @@ private:
}
protected:
- NodeType _nodeType;
+ NodeType _nodeType = NodeType::LEAF;
uint16_t _numChildren = 0;
unsigned int _depth = 0;
std::vector<uint8_t> _trieKey;