Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-rifkin committed Nov 14, 2023
1 parent 7e2d564 commit 47c9e32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace libassert::detail {
}

LIBASSERT_ATTR_COLD
std::string_view trim(const std::string_view s);
std::string_view trim(std::string_view s);

LIBASSERT_ATTR_COLD
void replace_all_dynamic(std::string& str, std::string_view text, std::string_view replacement);
Expand All @@ -62,7 +62,7 @@ namespace libassert::detail {
void replace_all_template(std::string& str, const std::pair<std::regex, std::string_view>& rule);

LIBASSERT_ATTR_COLD
std::string indent(const std::string_view str, size_t depth, char c = ' ', bool ignore_first = false);
std::string indent(const std::string_view, size_t depth, char c = ' ', bool ignore_first = false);

template<size_t N>
LIBASSERT_ATTR_COLD
Expand Down

0 comments on commit 47c9e32

Please sign in to comment.