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

@@ -33,11 +33,11 @@ BENCHMARK(BencharkBasic)->DenseRange(0, 256, 16);
static void BencharkText(benchmark::State& state) {
while (state.KeepRunning()) {
std::string content = " world ";
for(int i=0; i<state.range(0); ++i) {
for (int i = 0; i < state.range(0); ++i) {
content += content;
}
auto document = paragraph(content);
Screen screen(200,200);
Screen screen(200, 200);
Render(screen, document);
}
}