Description: Set the name of the function that the symbol is found in. If c++ demangling is supported it will be demangled.
| 1192 | // Set the name of the function that the symbol is found in. |
| 1193 | // If c++ demangling is supported it will be demangled. |
| 1194 | void SetFunction(char const* function) |
| 1195 | { |
| 1196 | this->Function = this->Demangle(function); |
| 1197 | } |
| 1198 | |
| 1199 | std::string GetFunction() const { return this->Function; } |
| 1200 |
no test coverage detected