Bruno.cpp:5:19: error: 'vector' has not been declared
5 | void InitB(int n, vector<int> a) {
| ^~~~~~
Bruno.cpp:5:25: error: expected ',' or '...' before '<' token
5 | void InitB(int n, vector<int> a) {
| ^
Bruno.cpp: In function 'void InitB(int, int)':
Bruno.cpp:6:8: error: 'i' was not declared in this scope
6 | forn(i,n) ::a[i]=a[i];
| ^
Bruno.cpp:6:3: error: 'forn' was not declared in this scope
6 | forn(i,n) ::a[i]=a[i];
| ^~~~
Bruno.cpp: In function 'void ReceiveB(bool)':
Bruno.cpp:30:12: error: 'i' was not declared in this scope
30 | forn(i,14) SendB((mn>>i)&1);
| ^
Bruno.cpp:30:7: error: 'forn' was not declared in this scope
30 | forn(i,14) SendB((mn>>i)&1);
| ^~~~
Bruno.cpp:32:15: error: 'max' was not declared in this scope; did you mean 'std::max'?
32 | for(int i=max(rq,lq); i<rq+1024; ++i) {
| ^~~
| std::max
In file included from /usr/include/c++/10/vector:60,
from Bruno.h:1,
from Bruno.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:300:5: note: 'std::max' declared here
300 | max(const _Tp& __a, const _Tp& __b, _Compare __comp)
| ^~~