Remove unneedd binary_function inheritance (#1998)

GCC 12 warns that C++17 removes this.
This commit is contained in:
Andrew Gaul 2022-07-24 22:41:58 +09:00 committed by GitHub
parent 404c284440
commit 38b5018bab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@
//-------------------------------------------------------------------
// headers_t
//-------------------------------------------------------------------
struct header_nocase_cmp : public std::binary_function<std::string, std::string, bool>
struct header_nocase_cmp
{
bool operator()(const std::string &strleft, const std::string &strright) const
{