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);


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to