| 1871 | BinaryView* view) override |
| 1872 | #else |
| 1873 | virtual bool Demangle(Ref<Architecture> arch, const string& name, Ref<Type>& outType, QualifiedName& outVarName, |
| 1874 | Ref<BinaryView> view) override |
| 1875 | #endif |
| 1876 | { |
| 1877 | if (view) |
| 1878 | return Demangle::DemangleMS(arch, name, outType, outVarName, view); |
| 1879 | return Demangle::DemangleMS(arch, name, outType, outVarName); |
| 1880 | } |
| 1881 | }; |
| 1882 | |
| 1883 | extern "C" |
nothing calls this directly
no test coverage detected