We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de36ea7 commit 932b1cbCopy full SHA for 932b1cb
httplib.h
@@ -366,7 +366,7 @@ inline unsigned char to_lower(int c) {
366
inline bool equal(const std::string &a, const std::string &b) {
367
return a.size() == b.size() &&
368
std::equal(a.begin(), a.end(), b.begin(),
369
- [](char a, char b) { return to_lower(a) == to_lower(b); });
+ [](char ca, char cb) { return to_lower(ca) == to_lower(cb); });
370
}
371
372
struct equal_to {
0 commit comments