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

@@ -2,6 +2,7 @@
#include <array> // for array
#include <cmath>
#include <cstdint>
#include <string_view> // for literals
#include "ftxui/screen/color_info.hpp" // for GetColorInfo, ColorInfo

View File

@@ -1,6 +1,8 @@
#ifndef FTXUI_SCREEN_STRING_INTERNAL_HPP
#define FTXUI_SCREEN_STRING_INTERNAL_HPP
#include <cstdint>
namespace ftxui {
bool EatCodePoint(const std::string& input,