summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXabier Rodriguez Calvar <calvaris@igalia.com>2018-02-14 13:30:41 +0100
committerTim-Philipp Müller <tim@centricular.com>2018-02-16 13:12:42 +0000
commit47415e50e17cdd5aac34b2c2f76b616b192aa043 (patch)
tree7b7d15a764a1364fb26c6afc0ac8fb471a681456
parent32d146b7de3bd33bba7e1ac6775b620fe66af0a3 (diff)
debug-viewer: Fixed C++ destructors detection
https://bugzilla.gnome.org/show_bug.cgi?id=793447
-rw-r--r--debug-viewer/GstDebugViewer/Data.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug-viewer/GstDebugViewer/Data.py b/debug-viewer/GstDebugViewer/Data.py
index 752bcd6..a97cee3 100644
--- a/debug-viewer/GstDebugViewer/Data.py
+++ b/debug-viewer/GstDebugViewer/Data.py
@@ -155,7 +155,7 @@ def default_log_line_regex_():
PID = r"(\d+)\s*"
FILENAME = r"([^:]*):"
LINE = r"(\d+):"
- FUNCTION = "([A-Za-z0-9_]*|operator\(\)):"
+ FUNCTION = "(~?[A-Za-z0-9_]*|operator\(\)):"
# FIXME: When non-g(st)object stuff is logged with *_OBJECT (like
# buffers!), the address is printed *without* <> brackets!
OBJECT = "(?:<([^>]+)>)?"