diff options
author | 2016-10-22 21:23:01 +0200 | |
---|---|---|
committer | 2016-10-22 21:23:44 +0200 | |
commit | fc340e9e7d4d0a1bfaf863fa6676aab3f6259d35 (patch) | |
tree | 29fd2aedf2ead9b4d4976742e58febda12cca2ee | |
parent | 6dfd18b929c10c926a4bf3a5602aeb18b683614c (diff) |
cleaning "mess" for OCD people (nw)
-rw-r--r-- | src/lib/util/vecstream.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/util/vecstream.h b/src/lib/util/vecstream.h index faf8b73c669..65e2a7638aa 100644 --- a/src/lib/util/vecstream.h +++ b/src/lib/util/vecstream.h @@ -148,8 +148,8 @@ public: protected: virtual pos_type seekoff(off_type off, std::ios_base::seekdir dir, std::ios_base::openmode which = std::ios_base::in | std::ios_base::out) override { - bool const in((which & std::ios_base::in)!=0); - bool const out((which & std::ios_base::out)!=0); + bool const in((which & std::ios_base::in) != 0); + bool const out((which & std::ios_base::out) != 0); if ((!in && !out) || (in && out && (std::ios_base::cur == dir)) || (in && !(m_mode & std::ios_base::in)) || |