Earl Miles wrote:
> Would it be worth it to specifically declare these functions inline? The
> compiler will probably ignore it anyway, but it seems worthwhile.
If the source code isn't available in the module being compiled,
'inline' means nothing to a standard build system, where the compiler
and linker are separate. By 'no longer inline', I mean that the
functions were moved to the .cc file, in order to break a dependency
between to headers.
> This file should possibly declare 'using namespace mysqlpp' in order to
> conform to the obsolete standard.
I'm reluctant to say 'using' in a header, but I'll think about it.