Hallo,
I'm trying to pasrse a stringstream but one problem:
Qt Code:
  1. int ch = sStream.get();
  2. if( sStream.eof() )
  3. return 1; //this seems doens't work
To copy to clipboard, switch view to plain text mode 
I see that the if is never "true" and when the sstream is end, ch assume '253'; why this?