summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2016-07-03 14:02:26 +1000
committer Vas Crabb <vas@vastheman.com>2016-07-03 14:02:26 +1000
commitcde4eddeb39431d521692806ff5934fc58a73280 (patch)
tree9499880f4c6b550867515e9327d96caf040be959
parentae6352aea434aa7725c2090f39f9c5a23de9783e (diff)
override without virtual looks uncomfortable (nw)
-rw-r--r--src/lib/util/vecstream.h2
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);