Anthony.cpp:19:11: warning: use of 'auto' in parameter declaration only available with '-fconcepts-ts'
19 | void maxl(auto &a, auto b) {a = max(a, b);}
| ^~~~
Anthony.cpp:19:20: warning: use of 'auto' in parameter declaration only available with '-fconcepts-ts'
19 | void maxl(auto &a, auto b) {a = max(a, b);}
| ^~~~
Anthony.cpp:20:11: warning: use of 'auto' in parameter declaration only available with '-fconcepts-ts'
20 | void minl(auto &a, auto b) {a = min(a, b);}
| ^~~~
Anthony.cpp:20:20: warning: use of 'auto' in parameter declaration only available with '-fconcepts-ts'
20 | void minl(auto &a, auto b) {a = min(a, b);}
| ^~~~
Anthony.cpp: In function 'std::vector<int> Mark(int, int, int, int, vi, vi)':
Anthony.cpp:44:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
44 | if (a > 2) bfs(); return ans;
| ^~
Anthony.cpp:44:23: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
44 | if (a > 2) bfs(); return ans;
| ^~~~~~
Catherine.cpp:19:11: warning: use of 'auto' in parameter declaration only available with '-fconcepts-ts'
19 | void maxl(auto &a, auto b) {a = max(a, b);}
| ^~~~
Catherine.cpp:19:20: warning: use of 'auto' in parameter declaration only available with '-fconcepts-ts'
19 | void maxl(auto &a, auto b) {a = max(a, b);}
| ^~~~
Catherine.cpp:20:11: warning: use of 'auto' in parameter declaration only available with '-fconcepts-ts'
20 | void minl(auto &a, auto b) {a = min(a, b);}
| ^~~~
Catherine.cpp:20:20: warning: use of 'auto' in parameter declaration only available with '-fconcepts-ts'
20 | void minl(auto &a, auto b) {a = min(a, b);}
| ^~~~
Catherine.cpp: In function 'int Move(std::vector<int>)':
Catherine.cpp:35:1: warning: control reaches end of non-void function [-Wreturn-type]
35 | }
| ^