Skip to content

Commit

Permalink
fix clang error
Browse files Browse the repository at this point in the history
  • Loading branch information
forgottosave committed Nov 9, 2024
1 parent ed5bdf9 commit 090f040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Manager::Manager(OSTreeTUI& ostreetui, const ftxui::Component& infoView, const f
Renderer([] {return vbox({filler()}) | flex;}), // push elements apart
Renderer([&] {
Elements branches;
for (int i{ostreetui.columnToBranchMap.size() - 1}; i >= 0; i--) {
for (size_t i{ostreetui.columnToBranchMap.size() - 1}; i >= 0; i--) {
std::string branch = ostreetui.columnToBranchMap.at(i);
std::string line = "――☐――― " + branch;
branches.push_back(text(line) | color(ostreetui.branchColorMap.at(branch)));
Expand Down

0 comments on commit 090f040

Please sign in to comment.