summaryrefslogtreecommitdiff
path: root/src/base/output.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/output.h')
-rw-r--r--src/base/output.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/output.h b/src/base/output.h
index cdc0ac27f..b7f743e56 100644
--- a/src/base/output.h
+++ b/src/base/output.h
@@ -51,7 +51,7 @@ public:
* stream. Perhaps this is not so critical, but recommended; this
* way the output stream looks like it's functioning, in a non-error
* state. */
- int overflow(int c) { return c; }
+ int overflow(int c) override { return c; }
};/* class null_streambuf */
/** A null stream-buffer singleton */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback