mirror of https://gitlab.com/basile.b/dexed.git
demangler service, detect if a mangled name is present
This commit is contained in:
parent
061d7e7c51
commit
48b6a258a5
|
@ -113,7 +113,7 @@ end;
|
|||
|
||||
function demangle(const value: string): string;
|
||||
begin
|
||||
if demangler.active then
|
||||
if demangler.active and (pos('_D', value) <> -1) then
|
||||
begin
|
||||
demangler.output.Clear;
|
||||
demangler.demangle(value);
|
||||
|
|
Loading…
Reference in New Issue