doll.cpp: In function 'void debug()':
doll.cpp:12:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
12 | for(auto cur : c) 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 : c) printf("%d ", cur); cout << endl;
| ^~~~
doll.cpp:13:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
13 | for(auto cur : x) printf("%d ", cur); cout << endl;
| ^~~
doll.cpp:13:41: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
13 | for(auto cur : x) printf("%d ", cur); cout << endl;
| ^~~~
doll.cpp:14:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
14 | for(auto cur : y) printf("%d ", cur); cout << endl;
| ^~~
doll.cpp:14:41: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
14 | for(auto cur : y) printf("%d ", cur); cout << endl;
| ^~~~
doll.cpp: In function 'void create_circuit(int, std::vector<int>)':
doll.cpp:47:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
47 | for(int i=1; i<quero.size(); i++) {
| ~^~~~~~~~~~~~~
doll.cpp:46:7: warning: unused variable 'ult' [-Wunused-variable]
46 | int ult=1;
| ^~~