<div class="gmail_quote">On Wed, Nov 30, 2011 at 6:21 PM, Kostya Serebryany <span dir="ltr"><<a href="mailto:kcc@google.com">kcc@google.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hi, <br>Here is one difference between clang and gcc which makes some of our software fail when built with clang. <br>is this something you would consider fixing? <br><br><div>Thanks, <br><br></div><div>--kcc <br><br>% cat pretty.cc <br>

#include <stdio.h><br>template<class T><br>const char *foo() {<br>  return __PRETTY_FUNCTION__;<br>}<br>int main() {<br>  printf("%s\n", foo<int>());<br>}<br>% g++ pretty.cc && ./a.out <br>

const char* foo() [with T = int]<br></div></blockquote><div><br></div><div>I'm of two minds here. I think it would be great to include the template arguments for the instantiation into the pretty name... But I'm really worried about trying to chase the exact formatting used by GCC.</div>
<div><br></div><div>From what I can tell, this is the format used in their diagnostic printing. I would expect that to change on the GCC end as well, so it seems that any code depending on this is just a time bomb...</div>
</div>