From ddab1f1b0c89f4c12a37b879e56de3d656c15403 Mon Sep 17 00:00:00 2001 From: jose-rZM <100773386+jose-rZM@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:30:59 +0100 Subject: [PATCH] braces around scalar init --- src/ll1_parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ll1_parser.cpp b/src/ll1_parser.cpp index b633825..d258721 100644 --- a/src/ll1_parser.cpp +++ b/src/ll1_parser.cpp @@ -283,7 +283,7 @@ void LL1Parser::PrintTableUsingTabulate() { } } } - table.format().font_align({FontAlign::center}); + table.format().font_align(FontAlign::center); table.column(0).format().font_color(Color::cyan); std::cout << table << std::endl; }