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 ab99d0e commit eff7df3Copy full SHA for eff7df3
src_cpp/utils.h
@@ -72,7 +72,7 @@ namespace set_operations {
72
transform(list.begin(), list.end(), inserter(tmp, tmp.end()), to_lower);
73
list = tmp;
74
}
75
- struct case_insens_cmp : public std::binary_function<std::string, std::string, bool> {
+ struct case_insens_cmp {
76
bool operator()(const std::string &lhs, const std::string &rhs) const {
77
#ifdef WIN_IMB
78
return stricmp(lhs.c_str(), rhs.c_str()) < 0;
0 commit comments