1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

[ADT/StringMap] Follow-up to r172455, use the correct constructor for setting the InitialSize,

previously it was calling the "StringMapImpl(unsigned itemSize)" constructor.

llvm-svn: 172500
This commit is contained in:
Argyrios Kyrtzidis 2013-01-15 01:58:45 +00:00
parent c0a3872856
commit a1949388a1

View File

@ -238,7 +238,8 @@ public:
: StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))), Allocator(A) {}
StringMap(unsigned InitialSize, AllocatorTy A)
: StringMapImpl(InitialSize), Allocator(A) {}
: StringMapImpl(InitialSize, static_cast<unsigned>(sizeof(MapEntryTy))),
Allocator(A) {}
StringMap(const StringMap &RHS)
: StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {