Skip to content

Commit

Permalink
shorten comment blocks to < 100 characters
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissimpkins committed Feb 8, 2020
1 parent 9b10fc4 commit 77d158d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/etc/lldb_rust_formatters.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ def print_val(lldb_val, internal_dict):
return lldb_val.GetValue()


# =--------------------------------------------------------------------------------------------------
# =---------------------------------------------------------------------------------------
# Type-Specialized Printing Functions
# =--------------------------------------------------------------------------------------------------
# =---------------------------------------------------------------------------------------

def print_struct_val(val, internal_dict, omit_first_field, omit_type_name, is_tuple_like):
"""
Expand Down Expand Up @@ -265,9 +265,9 @@ def print_std_string_val(val, internal_dict):
(length, data_ptr, cap) = rustpp.extract_length_ptr_and_cap_from_std_vec(vec)
return read_utf8_string(data_ptr, length)

# =--------------------------------------------------------------------------------------------------
# =-----------------------------------------------------------------------
# Helper Functions
# =--------------------------------------------------------------------------------------------------
# =-----------------------------------------------------------------------


def print_array_of_values(array_name, data_ptr_val, length, internal_dict):
Expand Down

0 comments on commit 77d158d

Please sign in to comment.