You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a debugger, users may input identifiers containing template parameter values and expect
some aspects of the identifer (e.g. the exact type of numeric parameters) to be inferred.
For example, given "template <short N> struct X<N>", the debugger should accept
"X<3>" and not just "X<(short)3>". A debugger can make this work by canonicalizing
incoming identifiers containing template parameter values into this simplified form.
When these identifiers are being produced via cpp_demangle, it is more efficient and more
reliable to have cpp_demangle itself produce this simplified form.
0 commit comments