doll.cpp: In function 'void debug()':
doll.cpp:10:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
10 | for(auto cur : c) printf("%d ", cur); cout << endl;
| ^~~
doll.cpp:10:41: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
10 | for(auto cur : c) printf("%d ", cur); cout << endl;
| ^~~~
doll.cpp:11:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
11 | for(auto cur : x) printf("%d ", cur); cout << endl;
| ^~~
doll.cpp:11:41: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
11 | for(auto cur : x) printf("%d ", cur); cout << endl;
| ^~~~
doll.cpp:12:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
12 | for(auto cur : y) printf("%d ", cur); cout << endl;
| ^~~
doll.cpp:12:41: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
12 | for(auto cur : y) printf("%d ", cur); cout << endl;
| ^~~~