From: Reid Kleckner Date: Wed, 22 May 2013 17:32:15 +0000 (+0000) Subject: Fix StringMapIterator compile errors for non-MSVC compilers. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=039c56fb57d30b8d0b418a970f7f075694c34169;p=oota-llvm.git Fix StringMapIterator compile errors for non-MSVC compilers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182493 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/StringMap.h b/include/llvm/ADT/StringMap.h index 2e07268596a..1d5d227aea7 100644 --- a/include/llvm/ADT/StringMap.h +++ b/include/llvm/ADT/StringMap.h @@ -457,7 +457,7 @@ private: template class StringMapIterator : public StringMapConstIterator { public: - StringMapIterator() : StringMapConstIterator() {} + StringMapIterator() : StringMapConstIterator() {} explicit StringMapIterator(StringMapEntryBase **Bucket, bool NoAdvance = false) : StringMapConstIterator(Bucket, NoAdvance) {