Tool shouldn't rename things instantiated from template parameters |
||
Issue description
template <void f()>
void g() {
f();
}
void foo();
g<foo>();
results in the function template body changing to void g() { Foo(); }
which is wrong
,
Mar 19 2016
|
||
►
Sign in to add a comment |
||
Comment 1 by bugdroid1@chromium.org
, Mar 19 2016