diff options
author | Dan Gohman <gohman@apple.com> | 2007-11-19 15:30:20 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-11-19 15:30:20 +0000 |
commit | adf3eab7735741926c67e6fc12b952500c45a9ba (patch) | |
tree | b1208a03d570ac65caa07e63818e89b8a3bc2daa /include/llvm/ADT/StringMap.h | |
parent | 089617d9e3acc242151a007e7a051ed2fb200b1f (diff) | |
download | external_llvm-adf3eab7735741926c67e6fc12b952500c45a9ba.tar.gz external_llvm-adf3eab7735741926c67e6fc12b952500c45a9ba.tar.bz2 external_llvm-adf3eab7735741926c67e6fc12b952500c45a9ba.zip |
Add explicit keywords.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44234 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/StringMap.h')
-rw-r--r-- | include/llvm/ADT/StringMap.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/llvm/ADT/StringMap.h b/include/llvm/ADT/StringMap.h index 895d62b1e6..5c47604db4 100644 --- a/include/llvm/ADT/StringMap.h +++ b/include/llvm/ADT/StringMap.h @@ -28,7 +28,7 @@ namespace llvm { class StringMapEntryBase { unsigned StrLen; public: - StringMapEntryBase(unsigned Len) : StrLen(Len) {} + explicit StringMapEntryBase(unsigned Len) : StrLen(Len) {} unsigned getKeyLength() const { return StrLen; } }; @@ -55,7 +55,7 @@ protected: unsigned NumTombstones; unsigned ItemSize; protected: - StringMapImpl(unsigned itemSize) : ItemSize(itemSize) { + explicit StringMapImpl(unsigned itemSize) : ItemSize(itemSize) { // Initialize the map with zero buckets to allocation. TheTable = 0; NumBuckets = 0; @@ -115,7 +115,7 @@ template<typename ValueTy> class StringMapEntry : public StringMapEntryBase { ValueTy Val; public: - StringMapEntry(unsigned StrLen) + explicit StringMapEntry(unsigned StrLen) : StringMapEntryBase(StrLen), Val() {} StringMapEntry(unsigned StrLen, const ValueTy &V) : StringMapEntryBase(StrLen), Val(V) {} @@ -204,7 +204,7 @@ class StringMap : public StringMapImpl { typedef StringMapEntry<ValueTy> MapEntryTy; public: StringMap() : StringMapImpl(sizeof(MapEntryTy)) {} - StringMap(unsigned InitialSize) + explicit StringMap(unsigned InitialSize) : StringMapImpl(InitialSize, sizeof(MapEntryTy)) {} AllocatorTy &getAllocator() { return Allocator; } @@ -314,8 +314,8 @@ class StringMapConstIterator { protected: StringMapImpl::ItemBucket *Ptr; public: - StringMapConstIterator(StringMapImpl::ItemBucket *Bucket, - bool NoAdvance = false) + explicit StringMapConstIterator(StringMapImpl::ItemBucket *Bucket, + bool NoAdvance = false) : Ptr(Bucket) { if (!NoAdvance) AdvancePastEmptyBuckets(); } |