Add override keyword through the code.

This was automated using `clang-modernize`.
This commit is contained in:
Yuri Kunde Schlesner 2014-10-26 02:56:13 -02:00
parent da564d3fe0
commit d72708c1f5
23 changed files with 87 additions and 87 deletions

View file

@ -14,16 +14,16 @@ public:
~EmuWindow_GLFW();
/// Swap buffers to display the next frame
void SwapBuffers();
void SwapBuffers() override;
/// Polls window events
void PollEvents();
void PollEvents() override;
/// Makes the graphics context current for the caller thread
void MakeCurrent();
void MakeCurrent() override;
/// Releases (dunno if this is the "right" word) the GLFW context from the caller thread
void DoneCurrent();
void DoneCurrent() override;
static void OnKeyEvent(GLFWwindow* win, int key, int scancode, int action, int mods);