[cfe-commits] r93225 - /cfe/trunk/tools/CIndex/CIndex.cpp

Daniel Dunbar daniel at zuster.org
Mon Jan 11 18:34:08 PST 2010


Author: ddunbar
Date: Mon Jan 11 20:34:07 2010
New Revision: 93225

URL: http://llvm.org/viewvc/llvm-project?rev=93225&view=rev
Log:
Remove duplicate class name, MSVC doesn't like this.

Modified:
    cfe/trunk/tools/CIndex/CIndex.cpp

Modified: cfe/trunk/tools/CIndex/CIndex.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/CIndex/CIndex.cpp?rev=93225&r1=93224&r2=93225&view=diff

==============================================================================
--- cfe/trunk/tools/CIndex/CIndex.cpp (original)
+++ cfe/trunk/tools/CIndex/CIndex.cpp Mon Jan 11 20:34:07 2010
@@ -416,7 +416,7 @@
   }
 }
 
-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);





More information about the cfe-commits mailing list