diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-01-12 02:34:07 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-01-12 02:34:07 +0000 |
commit | 140fce2e7ff48433454a62c2e3548e8bdafff34b (patch) | |
tree | a16a6821539d54417e9caa884cbac516f6f140bd | |
parent | 3c80f573dfbc01f29cc292f6c1fc794705823d52 (diff) |
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
-rw-r--r-- | tools/CIndex/CIndex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |