Add 'override' to method, to eliminate warning in clang.

This commit is contained in:
Stephen Anthony 2018-01-16 20:58:35 -03:30
parent 7b8dff8e46
commit 2cb2eed3e7
1 changed files with 3 additions and 3 deletions

View File

@ -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.