From: Daniel Dunbar Date: Tue, 12 Jan 2010 02:34:07 +0000 (+0000) Subject: Remove duplicate class name, MSVC doesn't like this. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=140fce2e7ff48433454a62c2e3548e8bdafff34b;p=clang Remove duplicate class name, MSVC doesn't like this. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@93225 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/CIndex/CIndex.cpp b/tools/CIndex/CIndex.cpp index 57afa86557..8e579f139d 100644 --- a/tools/CIndex/CIndex.cpp +++ b/tools/CIndex/CIndex.cpp @@ -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);