diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/win32/zipfile/zipfile.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/source/win32/zipfile/zipfile.cxx b/shell/source/win32/zipfile/zipfile.cxx index d33500735977..3bff687982dc 100644 --- a/shell/source/win32/zipfile/zipfile.cxx +++ b/shell/source/win32/zipfile/zipfile.cxx @@ -25,7 +25,6 @@ #include <malloc.h> #include <algorithm> -#include <functional> #include <memory> #include <string.h> @@ -325,7 +324,7 @@ bool isZipStream(StreamInterface *stream) namespace internal { /* for case in-sensitive string comparison */ -struct stricmp : public std::unary_function<std::string, bool> +struct stricmp { explicit stricmp(const std::string &str) : str_(str) {} |