zagonetka.cpp: In function 'bool gd(std::vector<int>&)':
zagonetka.cpp:38:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (auto it : g) cout << it << " "; cout << endl;
^~~
zagonetka.cpp:38:42: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (auto it : g) cout << it << " "; cout << endl;
^~~~
zagonetka.cpp: In function 'int main()':
zagonetka.cpp:107:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (auto it : mn) cout << it << " "; cout << endl;
^~~
zagonetka.cpp:107:47: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (auto it : mn) cout << it << " "; cout << endl;
^~~~
zagonetka.cpp:109:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (auto it : mx) cout << it << " "; cout << endl;
^~~
zagonetka.cpp:109:47: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (auto it : mx) cout << it << " "; cout << endl;
^~~~
zagonetka.cpp:142:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (auto it : mn) cout << it << " "; cout << endl;
^~~
zagonetka.cpp:142:43: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (auto it : mn) cout << it << " "; cout << endl;
^~~~
zagonetka.cpp:154:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (auto it : mx) cout << it << " "; cout << endl;
^~~
zagonetka.cpp:154:43: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (auto it : mx) cout << it << " "; cout << endl;
^~~~
zagonetka.cpp:148:20: warning: 'l' may be used uninitialized in this function [-Wmaybe-uninitialized]
if (i == r && l > i) {mx.pb(i); continue;}
~~~~~~~^~~~~~~~