diff options
Diffstat (limited to 'src/lib/util/vecstream.h')
-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)) || |