/in/foo.cc: In function 'int main()':
/in/foo.cc:7:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
7 | for(int i=0;i<a.size();i++)
| ~^~~~~~~~~
/in/foo.cc:7:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
7 | for(int i=0;i<a.size();i++)
| ^~~
/in/foo.cc:10:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
10 | sort(b.begin(), b.end(), greater<char>());
| ^~~~