Skip to content

Commit a374579

Browse files
committed
Clang complaining about unsigned vs signed comparisons :(
1 parent 2138631 commit a374579

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/output.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1313,7 +1313,7 @@ static void draw_armor_table( const std::vector<iteminfo> &vItemDisplay, const i
13131313
ImGui::TableSetupColumn( invisible_ID_label.c_str(), ImGuiTableColumnFlags_WidthStretch );
13141314
}
13151315
ImGui::TableHeadersRow();
1316-
for( int i = 0; i < chopped_up.size(); i++ ) {
1316+
for( size_t i = 0; i < chopped_up.size(); i++ ) {
13171317
ImGui::TableSetColumnIndex( i );
13181318
cataimgui::draw_colored_text( chopped_up[i], c_unset );
13191319
}

0 commit comments

Comments
 (0)