AK: Run clang-format on StringUtils.{cpp,h}

This commit is contained in:
Andreas Kling 2020-03-22 13:04:04 +01:00
commit 0efa47b7ef
Notes: sideshowbarker 2024-07-19 08:11:08 +09:00
2 changed files with 95 additions and 95 deletions

View file

@ -38,9 +38,9 @@ enum class CaseSensitivity {
namespace StringUtils {
bool matches(const StringView& str, const StringView& mask, CaseSensitivity = CaseSensitivity::CaseInsensitive);
int convert_to_int(const StringView&, bool& ok);
unsigned convert_to_uint(const StringView&, bool& ok);
bool matches(const StringView& str, const StringView& mask, CaseSensitivity = CaseSensitivity::CaseInsensitive);
int convert_to_int(const StringView&, bool& ok);
unsigned convert_to_uint(const StringView&, bool& ok);
}