## Description This PR is related to the issue # ## Tasks - [ ] Tested on Linux - [ ] Tested on Windows - [ ] Tested on macOS - [ ] Tested on iOS - [ ] Tested on Android ## How to test this PR? ```cpp #include int main() { sf::RenderWindow window(sf::VideoMode({1280, 720}), "Minimal, complete and verifiable example"); window.setFramerateLimit(60); while (window.isOpen()) { while (const std::optional event = window.pollEvent()) { if (event->is()) window.close(); } window.clear(); window.display(); } } ```