Main.cpp: In function 'int main()':
Main.cpp:19:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
19 | for (int i = 1; i < lastindex.size(); i++) // nicht mehr aktuelles löschen
| ~~^~~~~~~~~~~~~~~~~~
Main.cpp:23:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | for (int i = 0; i < biggest.size() - 1; i++) // neue längenoption
| ~~^~~~~~~~~~~~~~~~~~~~
Main.cpp:27:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | for (int e = 0; e < biggest.size(); e++) // ablaufsdatum updaten
| ~~^~~~~~~~~~~~~~~~