On Tuesday 12 February 2002 8:50 pm, Herbert Voss wrote: > - fixes some small bugs > - adding support for tgif-files > - small changes to the layout
Thanks, Herbert. I'll shove it in. Small coding points: - string before; - string after; + string before = string(); + string after = string(); These are exactly equivalent. We prefer the original. Moreover, why are you deleting code os << str_a << str_b << str_c; and replacing it with string str = "..."; str += "..."; str += "...."; os << str; This is far less clear and far, far less efficient, Leave it with me, Angus