/in/foo.cc: In function 'int _8to10(std::string)':
/in/foo.cc:16:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
16 | for(int i=0;i<s.size();i++)
| ~^~~~~~~~~
/in/foo.cc:16:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
16 | for(int i=0;i<s.size();i++)
| ^~~
/in/foo.cc:18:17: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
18 | return ans;
| ^~~~~~