On Tue, Dec 03, 2002 at 06:25:57PM -0000, Llew Sion Goodstadt wrote:
> One thing I am curious about is why strings are passed by value instead
> of by constant reference.
Mostly because I didn't want any clutter in the early stages. I think
of this as an optimization issue. IIRC I've changed some of these
instances to const std::string &, but not all of them yet. I'll get
back to this particular job when I have time.
Jeroen