]> granicus.if.org Git - clang/commitdiff
Remove duplicate class name, MSVC doesn't like this.
authorDaniel Dunbar <daniel@zuster.org>
Tue, 12 Jan 2010 02:34:07 +0000 (02:34 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Tue, 12 Jan 2010 02:34:07 +0000 (02:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@93225 91177308-0d34-0410-b5e6-96231b3b80d8

tools/CIndex/CIndex.cpp

index 57afa86557ba94d3c1b6b7910f2414c2756f7d0e..8e579f139d565d0922b89e3f66845a01e21b2a3a 100644 (file)
@@ -416,7 +416,7 @@ static SourceLocation getLocationFromCursor(CXCursor C,
   }
 }
 
-CXString CIndexer::CIndexer::createCXString(const char *String, bool DupString){
+CXString CIndexer::createCXString(const char *String, bool DupString){
   CXString Str;
   if (DupString) {
     Str.Spelling = strdup(String);