From: Amos Jeffries Date: Sat, 4 Jan 2014 23:15:19 +0000 (-0800) Subject: Remove useless semicolon in class definitions X-Git-Tag: merge-candidate-3-v1~506^2~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bfe8bc5122d0b0e3561026cef11ffe483bc2893a;p=thirdparty%2Fsquid.git Remove useless semicolon in class definitions --- diff --git a/src/http/Http1Parser.h b/src/http/Http1Parser.h index 2679725138..62de09c898 100644 --- a/src/http/Http1Parser.h +++ b/src/http/Http1Parser.h @@ -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();