diff options
author | 2016-07-03 14:02:26 +1000 | |
---|---|---|
committer | 2016-07-03 14:02:26 +1000 | |
commit | cde4eddeb39431d521692806ff5934fc58a73280 (patch) | |
tree | 9499880f4c6b550867515e9327d96caf040be959 | |
parent | ae6352aea434aa7725c2090f39f9c5a23de9783e (diff) |
override without virtual looks uncomfortable (nw)
-rw-r--r-- | src/lib/util/vecstream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/vecstream.h b/src/lib/util/vecstream.h index aaf0e84e61b..e4e8ddb5481 100644 --- a/src/lib/util/vecstream.h +++ b/src/lib/util/vecstream.h @@ -143,7 +143,7 @@ public: } protected: - 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 + 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); bool const out(which & std::ios_base::out); |