We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5fbc20 commit be5bd2eCopy full SHA for be5bd2e
src/etc/lldb_providers.py
@@ -932,8 +932,8 @@ def get_type_name(self) -> str:
932
ptee_type: SBType = type.GetPointeeType()
933
934
while ptr_type.is_pointer or ptr_type.is_reference:
935
- # remove the `const` modifier as it indicates the const-ness of any pointer/ref pointing *to* it
936
- # not its own constness
+ # remove the `const` modifier as it indicates the const-ness of any pointer/ref pointing
+ # *to* it not its own constness
937
# For example:
938
# const u8 *const * -> &&u8
939
# u8 *const * -> &&mut u8
0 commit comments