demangler service, detect if a mangled name is present

This commit is contained in:
Basile Burg 2017-03-11 12:17:40 +01:00
parent 061d7e7c51
commit 48b6a258a5
No known key found for this signature in database
GPG Key ID: 1868039F415CB8CF
1 changed files with 1 additions and 1 deletions

View File

@ -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);