Add missing includes for gcc

Bug:https://github.com/ArthurSonzogni/FTXUI/issues/695
This commit is contained in:
ArthurSonzogni
2023-07-15 16:37:50 +02:00
parent e19550ae69
commit 43240a5fd4
10 changed files with 24 additions and 11 deletions

View File

@@ -70,7 +70,8 @@ void Flush() {
}
constexpr int timeout_milliseconds = 20;
[[maybe_unused]] constexpr int timeout_microseconds = timeout_milliseconds * 1000;
[[maybe_unused]] constexpr int timeout_microseconds =
timeout_milliseconds * 1000;
#if defined(_WIN32)
void EventListener(std::atomic<bool>* quit, Sender<Task> out) {