Skip to content
Snippets Groups Projects
Commit 39ac967d authored by hjk's avatar hjk
Browse files

Debugger: Suppress listing __PRETTY_FUNCTION__


It's visible in the stack view anyway an make auto-resizing of
the L&E view ugly due to its length.

Change-Id: I722eb03fe0ddcb193ed8d45e672564f7113b662f
Reviewed-by: default avatarhjk <hjk121@nokiamail.com>
parent 9ff6490d
No related branches found
No related tags found
No related merge requests found
...@@ -118,7 +118,7 @@ def listOfLocals(varList): ...@@ -118,7 +118,7 @@ def listOfLocals(varList):
for symbol in block: for symbol in block:
name = symbol.print_name name = symbol.print_name
if name == "__in_chrg": if name == "__in_chrg" or name == "__PRETTY_FUNCTION__":
continue continue
# "NotImplementedError: Symbol type not yet supported in # "NotImplementedError: Symbol type not yet supported in
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment