We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d72114 commit 11c444aCopy full SHA for 11c444a
include/logpp/utils/string.h
@@ -18,10 +18,11 @@ namespace logpp
18
inline bool iequals(std::string_view lhs, std::string_view rhs)
19
{
20
return std::equal(
21
- std::begin(lhs), std::end(lhs), std::begin(rhs),
+ std::begin(lhs), std::end(lhs),
22
+ std::begin(rhs), std::end(rhs),
23
[](char c1, char c2) {
24
return std::tolower(c1) == std::tolower(c2);
- });
25
+ });
26
}
27
28
inline std::optional<size_t> parseSize(std::string_view str)
0 commit comments