From f7656cdcd446f9311ecf741ce9a8f316e6223e88 Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Tue, 16 Jan 2018 20:58:35 -0330 Subject: [PATCH] Add 'override' to method, to eliminate warning in clang. --- src/common/FrameBufferSDL2.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/FrameBufferSDL2.hxx b/src/common/FrameBufferSDL2.hxx index 3944849ce..489ff4b4b 100644 --- a/src/common/FrameBufferSDL2.hxx +++ b/src/common/FrameBufferSDL2.hxx @@ -48,11 +48,11 @@ class FrameBufferSDL2 : public FrameBuffer ////////////////////////////////////////////////////////////////////// /** - Updates window title + Updates window title/ - @param title The title of the application / window + @param title The title of the application / window */ - void setTitle(const string& title); + void setTitle(const string& title) override; /** Shows or hides the cursor based on the given boolean value.