Fix compilation errors in clang.

This commit is contained in:
ArthurSonzogni 2019-06-30 10:11:37 +02:00
parent c7d903a628
commit 8b79b3af99
2 changed files with 3 additions and 2 deletions

View File

@ -2,8 +2,9 @@
#define FTXUI_COMPONENT_EVENT_HPP
#include <array>
#include <vector>
#include <functional>
#include <string>
#include <vector>
namespace ftxui {

View File

@ -24,7 +24,7 @@ void OnExit(int signal) {
}
if (signal == SIGINT)
std::quick_exit(SIGINT);
quick_exit(SIGINT);
}
ScreenInteractive::ScreenInteractive(int dimx,