build: fix some clang warnings
This commit is contained in:
@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user