/in/foo.cc: In function 'std::vector<int> merge(const std::vector<int>&, const std::vector<int>&)':
/in/foo.cc:79:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
79 | while (i < a.size() && j < b.size()) {
| ~~^~~~~~~~~~
/in/foo.cc:79:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
79 | while (i < a.size() && j < b.size()) {
| ~~^~~~~~~~~~
/in/foo.cc:83:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
83 | while (i < a.size()) res.push_back(a[i++]);
| ~~^~~~~~~~~~
/in/foo.cc:84:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
84 | while (j < b.size()) res.push_back(b[j++]);
| ~~^~~~~~~~~~