aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.cpp')
-rw-r--r--src/window.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/window.cpp b/src/window.cpp
index 14671bf9..6eca459d 100644
--- a/src/window.cpp
+++ b/src/window.cpp
@@ -18,7 +18,10 @@ namespace yage
Window::Window() = default;
-Window::~Window() { SDL_DestroyWindow(window_); }
+Window::~Window()
+{
+ SDL_DestroyWindow(window_);
+}
void Window::create(const std::string &window_name, int width, int height,
unsigned flags)