* cxxabi::__cxa_demangle (and thus TCppDemanger) have terrible memory ownership model. * * Consider using CppDemangle instead. It is slow, but robust. */
| 11 | * Consider using CppDemangle instead. It is slow, but robust. |
| 12 | */ |
| 13 | class TCppDemangler { |
| 14 | public: |
| 15 | const char* Demangle(const char* name); |
| 16 | |
| 17 | private: |
| 18 | THolder<char, TFree> TmpBuf_; |
| 19 | }; |
| 20 | |
| 21 | } // namespace NPrivate |
no outgoing calls
no test coverage detected