combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:51:20: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
51 | while(erg.size() < menge - 1 ){
| ~~~~~~~~~~~^~~~~~~~~~~
combo.cpp:73:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
73 | if(numm == erg.size()){
| ~~~~~^~~~~~~~~~~~~
combo.cpp:76:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
76 | else if(numm - 1 == erg.size()){
| ~~~~~~~~~^~~~~~~~~~~~~
combo.cpp:84:17: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
84 | if(erg.size() < menge){
| ~~~~~~~~~~~^~~~~~~
combo.cpp:87:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
87 | if(numm == erg.size()){
| ~~~~~^~~~~~~~~~~~~
combo.cpp:94:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
94 | if(numm == erg.size()){
| ~~~~~^~~~~~~~~~~~~
combo.cpp:101:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
101 | if(numm == erg.size()){
| ~~~~~^~~~~~~~~~~~~
combo.cpp:50:7: warning: unused variable 'rechner' [-Wunused-variable]
50 | int rechner = 0;
| ^~~~~~~