Unverified Commit 355fa6c3 authored by Arseniy Terekhin's avatar Arseniy Terekhin Committed by GitHub

🚨 gdb_pretty_printer failure on basic types

name can be None, and `re.search` fails on `None`;
replaced `re` by `str.startswith` and `str.endswith`
parent f42a74b8
import gdb
import re
class JsonValuePrinter:
"Print a json-value"
......@@ -13,7 +12,8 @@ class JsonValuePrinter:
return self.val
def json_lookup_function(val):
if re.search("^nlohmann::basic_json<.*>$", val.type.strip_typedefs().name):
name = val.type.strip_typedefs().name
if name and name.startswith("nlohmann::basic_json<") and name.endswith(">"):
t = str(val['m_type'])
if t.startswith("nlohmann::detail::value_t::"):
try:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment