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