Fix workflow.

This commit is contained in:
ArthurSonzogni 2025-04-24 03:36:04 +02:00
parent f8d4880517
commit e185d6d475
No known key found for this signature in database
GPG Key ID: 41D98248C074CD6C
2 changed files with 2 additions and 3 deletions

View File

@ -1,3 +0,0 @@
build --cxxopt=-std=c++20
build --cxxopt=-Wall
build --cxxopt=-Werror

View File

@ -10,6 +10,7 @@
#include <memory> // for shared_ptr
#include <string> // for operator<<, string
#include <thread> // for sleep_for
#include <utility> // for ignore
#include <vector> // for vector
#include "ftxui/dom/node.hpp" // for Render
@ -49,6 +50,7 @@ int main() {
std::string reset_position;
for (int i = 0;; ++i) {
std::ignore = i;
auto document = hbox({
vbox({
graph(std::ref(my_graph)),