http://llvm.org/bugs/show_bug.cgi?id=17653
David Majnemer <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution|--- |INVALID --- Comment #1 from David Majnemer <[email protected]> --- The 'operator T*()' conversion function is marked 'explicit' which means that it will only be called during direct-initialization (as per C++11 [class.conv.fct]p2). Remove the 'explicit' and it will work just fine. -- You are receiving this mail because: You are on the CC list for the bug.
_______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
