/in/p1.cpp: In function 'int main()':
/in/p1.cpp:71:6: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (int j=0; j<(int)wrongguess.length(); ++j) cout << wrongguess[j] << ' '; cout << endl;
^~~
/in/p1.cpp:71:89: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (int j=0; j<(int)wrongguess.length(); ++j) cout << wrongguess[j] << ' '; cout << endl;
^~~~
/in/p1.cpp:98:6: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (int j=0; j<(int)wrongguess.length(); ++j) cout << wrongguess[j] << ' '; cout << endl;
^~~
/in/p1.cpp:98:89: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for (int j=0; j<(int)wrongguess.length(); ++j) cout << wrongguess[j] << ' '; cout << endl;
^~~~