Both > and >> expressions need to be parenthesized inside template argument lists.
(as noted in D120905)
Any opinions about removing the insertion of ' ' between consecutive template arg closing '>' chars? tpl<tpl<x>> vs tpl<tpl<x> >
Differential D122474
demangler] Parenthesize >> inside template args urnathan on Mar 25 2022, 4:40 AM. Authored by
Details
Both > and >> expressions need to be parenthesized inside template argument lists. (as noted in D120905) Any opinions about removing the insertion of ' ' between consecutive template arg closing '>' chars? tpl<tpl<x>> vs tpl<tpl<x> >
Diff Detail
Event TimelineComment Actions I think C++11 is pervasive enough that removing the space is fine. Demangler output is not necessarily valid source anyway. Patch LGTM. |