Martin Vermeer wrote: > Looks great, except that Jean-Marc is right: you can still in three > places replace > > istringstream is(cmd.argument); > string s; > is >> s; > > by simply > > string const s = cmd.argument;
I thought the reason for using the istringstream was to get rid of whitespace or other stuff that might be in cmd.argument after the first word. Is that wrong? And if we get rid of it here we should get rid of it in all the other insets, too (not necessarily now)... Georg