On Tue, 8 Jan 2002, Lars Gullik Bjønnes wrote:

> if fl_get_browser_line can return null, then it must be
> 
> char const * tmp = fl_get_browser_line(...);
> string blah = (tmp ? tmp : "");

I think you meant

string blah = tmp ? tmp : string();

Never use "" as a substitute for string().
It's not as clear, and it's slower. Finally, it smells like Basic,
and we don't want that, do we?

Greets,

Asger

Reply via email to