From: Automatic source maintenance Date: Fri, 17 May 2013 00:13:27 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_3_4_0_1~132 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6e422d23954433eadd5493ff85664012811520ce;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/HttpHeaderTools.h b/src/HttpHeaderTools.h index 2a80986c12..88046f2d17 100644 --- a/src/HttpHeaderTools.h +++ b/src/HttpHeaderTools.h @@ -64,7 +64,8 @@ public: private: /// Case-insensitive std::string "less than" comparison functor. /// Fast version recommended by Meyers' "Effective STL" for ASCII c-strings. - class NoCaseLessThan: public std::binary_function { + class NoCaseLessThan: public std::binary_function + { public: bool operator()(const std::string &lhs, const std::string &rhs) const { return strcasecmp(lhs.c_str(), rhs.c_str()) < 0;