From 26b246ac93d59a7f7ba29cff36ad1a3e61306a58 Mon Sep 17 00:00:00 2001 From: Timo Weingärtner Date: Mon, 14 Apr 2014 21:08:54 +0200 Subject: cosmetic: fix double semicolons --- rfc4251.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rfc4251.h b/rfc4251.h index 74bdc34..98734bf 100644 --- a/rfc4251.h +++ b/rfc4251.h @@ -54,7 +54,7 @@ inline std::istream & operator>> (std::istream & is, rfc4251byte & x) { } inline std::ostream & operator<< (std::ostream & os, rfc4251byte const & x) { - return os.write(x.buf, sizeof(x.buf));; + return os.write(x.buf, sizeof(x.buf)); } @@ -75,7 +75,7 @@ inline std::istream & operator>> (std::istream & is, rfc4251bool & x) { } inline std::ostream & operator<< (std::ostream & os, rfc4251bool const & x) { - return os.write(x.buf, sizeof(x.buf));; + return os.write(x.buf, sizeof(x.buf)); } @@ -96,7 +96,7 @@ inline std::istream & operator>> (std::istream & is, rfc4251uint32 & x) { } inline std::ostream & operator<< (std::ostream & os, rfc4251uint32 const & x) { - return os.write(x.buf, sizeof(x.buf));; + return os.write(x.buf, sizeof(x.buf)); } @@ -133,7 +133,7 @@ inline std::istream & operator>> (std::istream & is, rfc4251uint64 & x) { } inline std::ostream & operator<< (std::ostream & os, rfc4251uint64 const & x) { - return os.write(x.buf, sizeof(x.buf));; + return os.write(x.buf, sizeof(x.buf)); } -- cgit v1.2.3