We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aab3145 commit b0d2b31Copy full SHA for b0d2b31
llvm/include/llvm/ADT/DenseMap.h
@@ -887,7 +887,9 @@ class SmallDenseMap
887
AlignedCharArrayUnion<BucketT[InlineBuckets], LargeRep> storage;
888
889
public:
890
- explicit SmallDenseMap(unsigned InitialReserve = 0) { init(InitialReserve); }
+ explicit SmallDenseMap(unsigned NumElementsToReservre = 0) {
891
+ init(NumElementsToReservre);
892
+ }
893
894
SmallDenseMap(const SmallDenseMap &other) : BaseT() {
895
init(0);
0 commit comments