soccer.cpp:18:11: warning: use of 'auto' in parameter declaration only available with '-fconcepts-ts'
18 | void maxl(auto &a, auto b) {a = max(a, b);}
| ^~~~
soccer.cpp:18:20: warning: use of 'auto' in parameter declaration only available with '-fconcepts-ts'
18 | void maxl(auto &a, auto b) {a = max(a, b);}
| ^~~~
soccer.cpp:19:11: warning: use of 'auto' in parameter declaration only available with '-fconcepts-ts'
19 | void minl(auto &a, auto b) {a = min(a, b);}
| ^~~~
soccer.cpp:19:20: warning: use of 'auto' in parameter declaration only available with '-fconcepts-ts'
19 | void minl(auto &a, auto b) {a = min(a, b);}
| ^~~~
soccer.cpp: In function 'int biggest_stadium(int, std::vector<std::vector<int> >)':
soccer.cpp:31:17: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
31 | if (st == -1) st = i; if (i > ed) return 0;
| ^~
soccer.cpp:31:39: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
31 | if (st == -1) st = i; if (i > ed) return 0;
| ^~
soccer.cpp:44:1: warning: control reaches end of non-void function [-Wreturn-type]
44 | }
| ^