| 23 | } |
| 24 | |
| 25 | bool DemangleLLVM(const std::string& mangledName, QualifiedName& outVarName, |
| 26 | BinaryView* view) |
| 27 | { |
| 28 | const bool simplify = Settings::Instance()->Get<bool>("analysis.types.templateSimplifier", view); |
| 29 | return DemangleLLVM(mangledName, outVarName, simplify); |
| 30 | } |
| 31 | |
| 32 | bool DemangleLLVM(const std::string& mangledName, QualifiedName& outVarName, |
| 33 | const bool simplify) |
no test coverage detected