diff --git a/meson.build b/meson.build index 6975613f..6f94b7a6 100644 --- a/meson.build +++ b/meson.build @@ -45,6 +45,7 @@ extra_flags = [ '-Wformat-security', '-Wformat=2', '-Wstack-protector', + '-Wno-keyword-macro', # '-Wshadow', '-Wno-switch-enum', '-Wno-#warnings'] diff --git a/mu/mu-cmd-fields.cc b/mu/mu-cmd-fields.cc index 1ad556b7..729ccf44 100644 --- a/mu/mu-cmd-fields.cc +++ b/mu/mu-cmd-fields.cc @@ -37,7 +37,7 @@ table_header(Table& table, const MuConfig* opts) (*table.begin()).format() .font_style({FontStyle::bold}) - .font_color({Color::blue}); + .font_color(Color::blue); } diff --git a/mu/mu-cmd.cc b/mu/mu-cmd.cc index 482a2bca..a04b4174 100644 --- a/mu/mu-cmd.cc +++ b/mu/mu-cmd.cc @@ -416,8 +416,8 @@ cmd_info(const Mu::Store& store, const MuConfig* opts) continue; row.cells().at(0)->format().font_style({FontStyle::bold}) - .font_color({Color::green}); - row.cells().at(1)->format().font_color({Color::blue}); + .font_color(Color::green); + row.cells().at(1)->format().font_color(Color::blue); } };