cpp_demangle icon indicating copy to clipboard operation
cpp_demangle copied to clipboard

Templatized constructors are incorrectly formatted

Open fitzgen opened this issue 6 years ago • 0 comments

_ZN7mozilla3gfx12RecordedFillC2INS0_11EventStreamEEERT_

expected:

mozilla::gfx::RecordedFill::RecordedFill<mozilla::gfx::EventStream>(mozilla::gfx::EventStream&)

actual:

mozilla::gfx::EventStream& mozilla::gfx::RecordedFill::RecordedFill<mozilla::gfx::EventStream>()


Similar to the is_template checks that exist, probably need is_ctor_dtor as well.

fitzgen avatar Dec 01 '17 13:12 fitzgen