Skip to content

Commit 95d6e1f

Browse files
committed
Fix decimal64_t pattern
1 parent 5c23ca5 commit 95d6e1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extra/decimal_printer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def decimal64_summary(valobj, internal_dict):
3636

3737
def __lldb_init_module(debugger, internal_dict):
3838
decimal32_pattern = r"^(const )?(boost::decimal::decimal32_t|(\w+::)*decimal32_t)( &| \*)?$"
39-
decimal64_pattern = r"^(const )?(boost::decimal::decimal32_t|(\w+::)*decimal32_t)( &| \*)?$"
39+
decimal64_pattern = r"^(const )?(boost::decimal::decimal64_t|(\w+::)*decimal64_t)( &| \*)?$"
4040

4141
debugger.HandleCommand(
4242
f'type summary add -x "{decimal32_pattern}" -e -F decimal_printer.decimal32_summary'

0 commit comments

Comments
 (0)