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 <exception>....
> - public const_subscript_container<Result,Row,const Row>
> + virtual public const_subscript_container<Result,Row,const Row>
The only reason to do that is if there is an inheritance diamond that
this fixes. Is there one?