mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-08-02 03:16:37 +08:00
Fix workflow.
This commit is contained in:
parent
f8d4880517
commit
e185d6d475
3
.bazelrc
3
.bazelrc
@ -1,3 +0,0 @@
|
|||||||
build --cxxopt=-std=c++20
|
|
||||||
build --cxxopt=-Wall
|
|
||||||
build --cxxopt=-Werror
|
|
@ -10,6 +10,7 @@
|
|||||||
#include <memory> // for shared_ptr
|
#include <memory> // for shared_ptr
|
||||||
#include <string> // for operator<<, string
|
#include <string> // for operator<<, string
|
||||||
#include <thread> // for sleep_for
|
#include <thread> // for sleep_for
|
||||||
|
#include <utility> // for ignore
|
||||||
#include <vector> // for vector
|
#include <vector> // for vector
|
||||||
|
|
||||||
#include "ftxui/dom/node.hpp" // for Render
|
#include "ftxui/dom/node.hpp" // for Render
|
||||||
@ -49,6 +50,7 @@ int main() {
|
|||||||
|
|
||||||
std::string reset_position;
|
std::string reset_position;
|
||||||
for (int i = 0;; ++i) {
|
for (int i = 0;; ++i) {
|
||||||
|
std::ignore = i;
|
||||||
auto document = hbox({
|
auto document = hbox({
|
||||||
vbox({
|
vbox({
|
||||||
graph(std::ref(my_graph)),
|
graph(std::ref(my_graph)),
|
||||||
|
Loading…
Reference in New Issue
Block a user