doll.cpp: In function 'void create_circuit(int, std::vector<int>)':
doll.cpp:56:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
56 | for(auto x:c)cout<<x<<" ";cout<<endl;
| ^~~
doll.cpp:56:31: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
56 | for(auto x:c)cout<<x<<" ";cout<<endl;
| ^~~~
doll.cpp:57:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
57 | for(auto xx:x)cout<<xx<<" ";cout<<endl;
| ^~~
doll.cpp:57:33: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
57 | for(auto xx:x)cout<<xx<<" ";cout<<endl;
| ^~~~
doll.cpp:58:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
58 | for(auto x:y)cout<<x<<" ";cout<<endl;
| ^~~
doll.cpp:58:31: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
58 | for(auto x:y)cout<<x<<" ";cout<<endl;
| ^~~~