diff --git a/project/include/graphics/Renderer.h b/project/include/graphics/Renderer.h index 2c8a1d3cc..c964e8086 100644 --- a/project/include/graphics/Renderer.h +++ b/project/include/graphics/Renderer.h @@ -16,7 +16,7 @@ namespace lime { public: - virtual ~Renderer() {}; + virtual ~Renderer () {}; virtual void Flip () = 0; virtual void* GetContext () = 0; diff --git a/project/include/ui/Window.h b/project/include/ui/Window.h index c87817cda..ff169a5c0 100644 --- a/project/include/ui/Window.h +++ b/project/include/ui/Window.h @@ -19,7 +19,7 @@ namespace lime { public: - virtual ~Window() {}; + virtual ~Window () {}; virtual void Alert (const char* message, const char* title) = 0; virtual void Close () = 0;