I am trying to learn and understand name mangling in C++. Here are some questions:
(1) From devx
When a global function is overloaded, the gen
Technically, it's "decorating". It sounds less crude but also mangling sort of implies that CreditInterest
might get rearranged into IntCrederestit
whereas what actually happens is more like _CreditInterest@4
which is, fair to say, "decorated" more than mangled. That said, I call it mangling too :-) but you'll find more technical info and examples if you search for "C++ name decoration".