]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Remove useless semicolon in class definitions
authorAmos Jeffries <squid3@treenet.co.nz>
Sat, 4 Jan 2014 23:15:19 +0000 (15:15 -0800)
committerAmos Jeffries <squid3@treenet.co.nz>
Sat, 4 Jan 2014 23:15:19 +0000 (15:15 -0800)
src/http/Http1Parser.h

index 2679725138c565cea051339be9ce8731cd3bd2ab..62de09c898f227df5ad31f33fc90ab675793612e 100644 (file)
@@ -36,7 +36,7 @@ public:
      * NOTE: This is *not* the buffer size, just the parse-able data length.
      * The parse routines may be called again later with more data.
      */
-    Parser(const char *aBuf, int len) { reset(aBuf,len); };
+    Parser(const char *aBuf, int len) { reset(aBuf,len); }
 
     /// Set this parser back to a default state.
     /// Will DROP any reference to a buffer (does not free).
@@ -121,7 +121,7 @@ public:
     RequestParser(const char *aBuf, int len) : Parser(aBuf, len) {}
     virtual void clear();
     virtual void noteBufferShift(int64_t n);
-    virtual int64_t messageOffset() const {return req.start;};
+    virtual int64_t messageOffset() const {return req.start;}
     virtual int64_t firstLineSize() const {return req.end - req.start + 1;}
     virtual bool parse();