[llvm-commits] [llvm] r103312 - /llvm/trunk/include/llvm/Analysis/DebugInfo.h

Douglas Gregor dgregor at apple.com
Fri May 7 15:28:25 PDT 2010


Author: dgregor
Date: Fri May  7 17:28:25 2010
New Revision: 103312

URL: http://llvm.org/viewvc/llvm-project?rev=103312&view=rev
Log:
Clang is dying on this with an ambiguous conversion sequence. We're working on it

Modified:
    llvm/trunk/include/llvm/Analysis/DebugInfo.h

Modified: llvm/trunk/include/llvm/Analysis/DebugInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/DebugInfo.h?rev=103312&r1=103311&r2=103312&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/DebugInfo.h (original)
+++ llvm/trunk/include/llvm/Analysis/DebugInfo.h Fri May  7 17:28:25 2010
@@ -63,7 +63,6 @@
 
     bool Verify() const { return DbgNode != 0; }
 
-    operator const MDNode *() const { return DbgNode; }
     operator MDNode *() const { return const_cast<MDNode*>(DbgNode); }
     MDNode *operator ->() const { return const_cast<MDNode*>(DbgNode); }
 





More information about the llvm-commits mailing list