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:28:17: error: expected unqualified-id before 'not' token
28 | int not = 0;
| ^~~
soccer.cpp:32:17: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
32 | if (st == -1) st = i; if (i > ed) return 0;
| ^~
soccer.cpp:32:39: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
32 | if (st == -1) st = i; if (i > ed) return 0;
| ^~
soccer.cpp:33:24: error: expected primary-expression before ')' token
33 | if (not) return 0;
| ^
soccer.cpp:35:38: error: expected primary-expression before '=' token
35 | else if (l[i] != -1) not = 1;
| ^