[Bug demangler/115400] Templates with deduced constant template parameters are not correctly demangled
luigighiron at gmail dot com via Gcc-bugs <[email protected]>
| Newsgroups | gmane.comp.gcc.bugs |
|---|---|
| Message-ID | <[email protected]/bugzilla/> |
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115400
Halalaluyafail3 <luigighiron at gmail dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Templates with CTAD |Templates with deduced
|parameters are not |constant template
|correctly demangled |parameters are not
| |correctly demangled
--- Comment #1 from Halalaluyafail3 <luigighiron at gmail dot com> ---
Actually, it seems more broad than just CTAD:
_Z3fooITnDaLi0EEvv
This is not correctly demangled, the following is what generates it:
template<auto>void foo(){}
int main(){foo<0>();}