X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=blobdiff_plain;f=include%2Fllvm%2FADT%2FStringMap.h;h=5c47604db450477fd683ea6ad8f882c698f3e9fe;hp=895d62b1e61bb43fe329130c51b210af1c79e2b0;hb=adf3eab7735741926c67e6fc12b952500c45a9ba;hpb=089617d9e3acc242151a007e7a051ed2fb200b1f diff --git a/include/llvm/ADT/StringMap.h b/include/llvm/ADT/StringMap.h index 895d62b1e61..5c47604db45 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 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 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(); }