Skip to content

Commit 886b6e8

Browse files
committed
fix(lldb): only handle Info types directly in mrdocs namespace
1 parent 67e2673 commit 886b6e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

share/lldb/mrdocs_formatters.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
# ---------- SIMPLE, WORKING REGEXES ----------
1111
# Tip: register BOTH const and non-const; avoid fancy groups.
1212
_INFO_REGEXES = [
13-
r"^clang::mrdocs::.*Info$",
14-
r"^const clang::mrdocs::.*Info$",
13+
r"^clang::mrdocs::[^:]*Info$",
14+
r"^const clang::mrdocs::[^:]*Info$",
1515
]
1616

1717

0 commit comments

Comments
 (0)