[cfe-commits] [Patch] Add highlighting and type eliding when two templates are used in a diagnostics. Also, template tree printing.
Richard Smith
richard at metafoo.co.uk
Fri Jun 22 17:43:22 PDT 2012
On Fri, Jun 22, 2012 at 4:59 PM, Richard Trieu <rtrieu at google.com> wrote:
> Updated template diffing patch.
Updated patch looks good to me, but I found a crash on this code while
playing with it:
template<typename ...T> struct S {};
template<typename T> using U = S<int, char, T>;
int f(S<int, char, double>);
int k = f(U<char>());
More information about the cfe-commits
mailing list