/in/foo.cc: In function 'void grammerAnalysis(std::__cxx11::string)':
/in/foo.cc:45:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < talk.length(); i++)
~~^~~~~~~~~~~~~~~
/in/foo.cc:74:32: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = talk_start; i <= talk.length(); i++)
~~^~~~~~~~~~~~~~~~
/in/foo.cc:119:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < content.length(); i++)
~~^~~~~~~~~~~~~~~~~~
/in/foo.cc: In function 'void analyzer()':
/in/foo.cc:187:35: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int tki = 0; tki < cons.size(); tki++)
~~~~^~~~~~~~~~~~~
/in/foo.cc: In function 'int main()':
/in/foo.cc:363:5: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(ch==10)ch=getchar();getchar();
^~~~~
/in/foo.cc:363:31: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'while'
while(ch==10)ch=getchar();getchar();
^~~~~~~