-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
i tried fixing this, see attached patches.
80ee5aea2cca13691c975b03efeed8e1 *sql_query.cc.diff
129600480c9b16caf7c7fff67745c27c *sql_query1.h.diff
when changes were made from 1.7.17 to remove strstream, replacing it
with stringstream, this crept in, i think. i cant immediately see
another way of exposing the stringstream::str() function.
HTH
ahnkle
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (Cygwin)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFBZaVxbAtTb6UlY9oRAk1OAKCFQknu9wX4lJxUUkemQu0xTzaxLACguDOy
x5Bpj0rJmHK2gPDgXek3Kwo=
=ytEI
-----END PGP SIGNATURE-----
95,96c95
< //return const_this->str();
< return const_this->str_internal();
---
> return const_this->str();
116,117d115
< inline std::string str_internal() { return std::stringstream::str(); }
<