/in/foo.cc: In member function 'BigInt BigInt::multiply(BigInt)':
/in/foo.cc:30:28: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
30 | for (auto i = 0; i < num.size(); ++i) {
| ~~^~~~~~~~~~~~
/in/foo.cc:32:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
32 | for (auto j = 0; j < other.num.size() || carry; ++j) {
| ~~^~~~~~~~~~~~~~~~~~
/in/foo.cc:34:48: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | num[i] * (j < other.num.size() ? other.num[j] : 0) +
| ~~^~~~~~~~~~~~~~~~~~