Remove outdated & incorrect part of comment.

This comment was copied over from another class in r34170, where it made sense.

llvm-svn: 200697
This commit is contained in:
Eli Bendersky 2014-02-03 14:33:51 +00:00
parent 756e1c1e4b
commit 309e77fbe2
1 changed files with 1 additions and 3 deletions

View File

@ -136,10 +136,8 @@ public:
InitType InitVal) {
unsigned KeyLength = static_cast<unsigned>(KeyEnd-KeyStart);
// Okay, the item doesn't already exist, and 'Bucket' is the bucket to fill
// in. Allocate a new item with space for the string at the end and a null
// Allocate a new item with space for the string at the end and a null
// terminator.
unsigned AllocSize = static_cast<unsigned>(sizeof(StringMapEntry))+
KeyLength+1;
unsigned Alignment = alignOf<StringMapEntry>();