Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
lockshaw committed Jan 16, 2025
1 parent ad05f5c commit 22eda14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions lib/utils/include/utils/stack_string.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ struct stack_basic_string {

friend struct std::hash<stack_basic_string>;

friend std::string
format_as(stack_basic_string<Char, MAXSIZE> const &s) {
friend std::string format_as(stack_basic_string<Char, MAXSIZE> const &s) {
return {s.contents.cbegin(), s.contents.cend()};
}

Expand Down
1 change: 1 addition & 0 deletions lib/utils/include/utils/stack_vector/stack_vector.h
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,7 @@ struct stack_vector {
});
return "[" + result + "]";
}

private:
std::size_t m_size = 0;
std::array<element_type, MAXSIZE> contents;
Expand Down

0 comments on commit 22eda14

Please sign in to comment.