Browse Source

Fix uninitialized pointer check in GlfwApplication.

pull/246/head
Samuel Kogler 8 years ago
parent
commit
6379a8458e
  1. 2
      src/Magnum/Platform/GlfwApplication.h

2
src/Magnum/Platform/GlfwApplication.h

@ -480,7 +480,7 @@ class GlfwApplication {
static GlfwApplication* _instance;
GLFWwindow* _window;
GLFWwindow* _window{ nullptr };
Flags _flags;
#ifdef MAGNUM_TARGET_GL
std::unique_ptr<Platform::GLContext> _context;

Loading…
Cancel
Save