Skip to content

Commit 898fa9a

Browse files
committed
Fix paths
1 parent 3704993 commit 898fa9a

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

extra/decimal_printer_lldb.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -119,55 +119,55 @@ def __lldb_init_module(debugger, internal_dict):
119119
decimal_fast128_pattern = r"^(const )?(boost::decimal::decimal_fast128_t|(\w+::)*decimal_fast128_t)( &| \*)?$"
120120

121121
debugger.HandleCommand(
122-
f'type summary add -x "{decimal32_pattern}" -e -F decimal_printer.decimal32_summary'
122+
f'type summary add -x "{decimal32_pattern}" -e -F decimal_printer_lldb.decimal32_summary'
123123
)
124124
debugger.HandleCommand(
125-
f'type synthetic add -x "{decimal32_pattern}" -l decimal_printer.DecimalSyntheticProvider'
125+
f'type synthetic add -x "{decimal32_pattern}" -l decimal_printer_lldb.DecimalSyntheticProvider'
126126
)
127127

128128
print("decimal32_t printer loaded successfully")
129129

130130
debugger.HandleCommand(
131-
f'type summary add -x "{decimal64_pattern}" -e -F decimal_printer.decimal64_summary'
131+
f'type summary add -x "{decimal64_pattern}" -e -F decimal_printer_lldb.decimal64_summary'
132132
)
133133
debugger.HandleCommand(
134-
f'type synthetic add -x "{decimal64_pattern}" -l decimal_printer.DecimalSyntheticProvider'
134+
f'type synthetic add -x "{decimal64_pattern}" -l decimal_printer_lldb.DecimalSyntheticProvider'
135135
)
136136

137137
print("decimal64_t printer loaded successfully")
138138

139139
debugger.HandleCommand(
140-
f'type summary add -x "{decimal128_pattern}" -e -F decimal_printer.decimal128_summary'
140+
f'type summary add -x "{decimal128_pattern}" -e -F decimal_printer_lldb.decimal128_summary'
141141
)
142142
debugger.HandleCommand(
143-
f'type synthetic add -x "{decimal128_pattern}" -l decimal_printer.DecimalSyntheticProvider'
143+
f'type synthetic add -x "{decimal128_pattern}" -l decimal_printer_lldb.DecimalSyntheticProvider'
144144
)
145145

146146
print("decimal128_t printer loaded successfully")
147147

148148
debugger.HandleCommand(
149-
f'type summary add -x "{decimal_fast32_pattern}" -e -F decimal_printer.decimal_fast32_summary'
149+
f'type summary add -x "{decimal_fast32_pattern}" -e -F decimal_printer_lldb.decimal_fast32_summary'
150150
)
151151
debugger.HandleCommand(
152-
f'type synthetic add -x "{decimal_fast32_pattern}" -l decimal_printer.DecimalFastSyntheticProvider'
152+
f'type synthetic add -x "{decimal_fast32_pattern}" -l decimal_printer_lldb.DecimalFastSyntheticProvider'
153153
)
154154

155155
print("decimal_fast32_t printer loaded successfully")
156156

157157
debugger.HandleCommand(
158-
f'type summary add -x "{decimal_fast64_pattern}" -e -F decimal_printer.decimal_fast64_summary'
158+
f'type summary add -x "{decimal_fast64_pattern}" -e -F decimal_printer_lldb.decimal_fast64_summary'
159159
)
160160
debugger.HandleCommand(
161-
f'type synthetic add -x "{decimal_fast64_pattern}" -l decimal_printer.DecimalFastSyntheticProvider'
161+
f'type synthetic add -x "{decimal_fast64_pattern}" -l decimal_printer_lldb.DecimalFastSyntheticProvider'
162162
)
163163

164164
print("decimal_fast64_t printer loaded successfully")
165165

166166
debugger.HandleCommand(
167-
f'type summary add -x "{decimal_fast128_pattern}" -e -F decimal_printer.decimal_fast128_summary'
167+
f'type summary add -x "{decimal_fast128_pattern}" -e -F decimal_printer_lldb.decimal_fast128_summary'
168168
)
169169
debugger.HandleCommand(
170-
f'type synthetic add -x "{decimal_fast128_pattern}" -l decimal_printer.DecimalFastSyntheticProvider'
170+
f'type synthetic add -x "{decimal_fast128_pattern}" -l decimal_printer_lldb.DecimalFastSyntheticProvider'
171171
)
172172

173173
print("decimal_fast128_t printer loaded successfully")

0 commit comments

Comments
 (0)