From cde4eddeb39431d521692806ff5934fc58a73280 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Sun, 3 Jul 2016 14:02:26 +1000 Subject: [PATCH] override without virtual looks uncomfortable (nw) --- src/lib/util/vecstream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);