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

@@ -91,7 +91,6 @@ Element DefaultRenderState(const WindowRenderState& state) {
element = window(text(state.title), element);
element |= clear_under;
Color color = Color::Red;
element = std::make_shared<ResizeDecorator>( //
@@ -304,3 +303,7 @@ Component Window(WindowOptions option) {
}
}; // namespace ftxui
// Copyright 2023 Arthur Sonzogni. All rights reserved.
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.