From 140fce2e7ff48433454a62c2e3548e8bdafff34b Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Tue, 12 Jan 2010 02:34:07 +0000 Subject: [PATCH] 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 --- tools/CIndex/CIndex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.1