Xoractive.cpp: In function 'std::vector<int> guess(int)':
Xoractive.cpp:21:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
21 | if (!v.size()) break;ms.clear();
| ^~
Xoractive.cpp:21:30: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
21 | if (!v.size()) break;ms.clear();
| ^~
Xoractive.cpp:24:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | for (int i = 0; i < v2.size(); i++) {
| ~~^~~~~~~~~~~
Xoractive.cpp:28:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
28 | for (int i = 0; i < v1.size(); i++) {
| ~~^~~~~~~~~~~
Xoractive.cpp:42:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
42 | for (int i = 0; i < num.size(); i++) {
| ~~^~~~~~~~~~~~