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 7e8db1d commit b713a3aCopy full SHA for b713a3a
httplib.h
@@ -1229,7 +1229,7 @@ inline std::string from_i_to_hex(size_t n) {
1229
inline bool start_with(const std::string &a, const std::string &b) {
1230
if (a.size() < b.size()) { return false; }
1231
for (size_t i = 0; i < b.size(); i++) {
1232
- if (std::tolower(a[i]) != std::tolower(b[i])) { return false; }
+ if (::tolower(a[i]) != ::tolower(b[i])) { return false; }
1233
}
1234
return true;
1235
0 commit comments