mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Calling the base class constructor from the derived class' initializer list. This matches DenseMap's behavior, and silences some warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188528 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
32b34f7f72
commit
4e31acb558
@ -713,13 +713,13 @@ public:
|
||||
init(NumInitBuckets);
|
||||
}
|
||||
|
||||
SmallDenseMap(const SmallDenseMap &other) {
|
||||
SmallDenseMap(const SmallDenseMap &other) : BaseT() {
|
||||
init(0);
|
||||
copyFrom(other);
|
||||
}
|
||||
|
||||
#if LLVM_HAS_RVALUE_REFERENCES
|
||||
SmallDenseMap(SmallDenseMap &&other) {
|
||||
SmallDenseMap(SmallDenseMap &&other) : BaseT() {
|
||||
init(0);
|
||||
swap(other);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user