mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-09-17 08:28:09 +08:00
Add missing includes for gcc
Bug:https://github.com/ArthurSonzogni/FTXUI/issues/695
This commit is contained in:
@@ -33,11 +33,11 @@ BENCHMARK(BencharkBasic)->DenseRange(0, 256, 16);
|
||||
static void BencharkText(benchmark::State& state) {
|
||||
while (state.KeepRunning()) {
|
||||
std::string content = "HELLO 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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user