printer.cpp: In function 'bool lower(std::string, std::string)':
printer.cpp:13:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
13 | for(int i = 0; i < a.size(); i++){
| ~~^~~~~~~~~~
printer.cpp: In function 'int main()':
printer.cpp:35:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::__cxx11::basic_string<char> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
35 | for(int i = 0; i < str.size(); i++){
| ~~^~~~~~~~~~~~
printer.cpp:42:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
42 | while(first < str[i].size() && printer[first] == str[i][first]) first++;
| ~~~~~~^~~~~~~~~~~~~~~
printer.cpp:44:24: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
44 | while(printer.size() > first)
| ~~~~~~~~~~~~~~~^~~~~~~