clang-format

This commit is contained in:
Marcin Mikołajczyk 2025-07-14 21:02:22 +01:00
parent c8885471f4
commit b852b1834d

View File

@ -41,11 +41,11 @@ struct Epoll {
void Destroy() noexcept {
events.clear();
#ifdef _WIN32
#ifdef _WIN32
epoll_close(epoll_fd);
#else
#else
close(epoll_fd);
#endif
#endif
epoll_fd = -1;
name = nullptr;
destroyed = true;