line cc_preferences_ui.cpp:181
for (CalChartColors i = COLOR_FIELD; i < COLOR_NUM; static_cast<calchartcolors>(static_cast<int>(i)+1))</int></calchartcolors>
should be changed to
for (CalChartColors i = COLOR_FIELD; i < COLOR_NUM; i = static_cast<calchartcolors>(static_cast<int>(i)+1))</int></calchartcolors>
Same for line 210, 233,
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
line cc_preferences_ui.cpp:181
for (CalChartColors i = COLOR_FIELD; i < COLOR_NUM; static_cast<calchartcolors>(static_cast<int>(i)+1))</int></calchartcolors>
should be changed to
for (CalChartColors i = COLOR_FIELD; i < COLOR_NUM; i = static_cast<calchartcolors>(static_cast<int>(i)+1))</int></calchartcolors>
Same for line 210, 233,