diff --git a/.bazelrc b/.bazelrc deleted file mode 100644 index b1fd142d..00000000 --- a/.bazelrc +++ /dev/null @@ -1,3 +0,0 @@ -build --cxxopt=-std=c++20 -build --cxxopt=-Wall -build --cxxopt=-Werror diff --git a/examples/dom/graph.cpp b/examples/dom/graph.cpp index 461933fe..c63f9296 100644 --- a/examples/dom/graph.cpp +++ b/examples/dom/graph.cpp @@ -10,6 +10,7 @@ #include // for shared_ptr #include // for operator<<, string #include // for sleep_for +#include // for ignore #include // 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)),