| 45 | } |
| 46 | |
| 47 | bool DemangleMS(Architecture* arch, const std::string& mangledName, Ref<Type>& outType, QualifiedName& outVarName, |
| 48 | BinaryView* view) |
| 49 | { |
| 50 | const bool simplify = Settings::Instance()->Get<bool>("analysis.types.templateSimplifier", view); |
| 51 | return DemangleMS(arch, mangledName, outType, outVarName, simplify); |
| 52 | } |
| 53 | |
| 54 | bool DemangleMS(Architecture* arch, const std::string& mangledName, Ref<Type>& outType, QualifiedName& outVarName, |
| 55 | const bool simplify) |
no test coverage detected