diff options
author | Timo Weingärtner <timo@tiwe.de> | 2014-04-14 21:08:54 +0200 |
---|---|---|
committer | Timo Weingärtner <timo@tiwe.de> | 2014-04-14 21:39:27 +0200 |
commit | 26b246ac93d59a7f7ba29cff36ad1a3e61306a58 (patch) | |
tree | 53cc91ecb53617353429f262fd358c9d9f9da9f8 /rfc4251.h | |
parent | 7d0f47c171b716b7e138157f8165ebf790227582 (diff) | |
download | ssh-agent-filter-26b246ac93d59a7f7ba29cff36ad1a3e61306a58.tar.gz |
cosmetic: fix double semicolons
Diffstat (limited to 'rfc4251.h')
-rw-r--r-- | rfc4251.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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)); } |