hotstreams / limitless-engine

OpenGL C++ Graphics Engine
MIT License
278 stars 26 forks source link

remove noexcept specifier from Context::pollEvents() #20

Closed Tehsapper closed 2 years ago

Tehsapper commented 2 years ago

This method calls glfwPollEvents(), which will call assigned GLFW callback functions, which in turn can and will throw exceptions, crashing the application with no survivors with std::terminate.