From: Warren Young Date: September 1 2004 10:59pm Subject: Re: PATCH - 1.7.14 - minor cleanup List-Archive: http://lists.mysql.com/plusplus/3442 Message-Id: <41365444.80301@etr-usa.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Chris Frey wrote: > First, thanks to Warren Young for taking over maintainership of mysql++. You're welcome. It's selfish, of course: I need it to be maintained. > - BadQuery(std::string er) : error(er) {} > + BadQuery(std::string &er) : error(er) {} Indeed. Applied. Though I do wonder if there are any compilers now that will build MySQL++ at all that don't have .... > - public const_subscript_container > + virtual public const_subscript_container The only reason to do that is if there is an inheritance diamond that this fixes. Is there one?