]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Fri, 17 May 2013 00:13:27 +0000 (18:13 -0600)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Fri, 17 May 2013 00:13:27 +0000 (18:13 -0600)
src/HttpHeaderTools.h

index 2a80986c1233a1bcfccd88b2a72fe31ea8187bc1..88046f2d172743d141a813e045f7ec87b74053ea 100644 (file)
@@ -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<std::string, std::string, bool> {
+    class NoCaseLessThan: public std::binary_function<std::string, std::string, bool>
+    {
     public:
         bool operator()(const std::string &lhs, const std::string &rhs) const {
             return strcasecmp(lhs.c_str(), rhs.c_str()) < 0;