Author: wyoung
Date: Tue Jun 26 03:23:17 2007
New Revision: 1607

URL: http://svn.gna.org/viewcvs/mysqlpp?rev=1607&view=rev
Log:
Fixed a typo in one of the storein_sequence() overloads.  It's a
template, which probably explains why we haven't found it before: you
can't instantiate it, but until someone tries, no one will see the
compiler error.  Apparently this isn't one of the more popular
overloads...

Modified:
    trunk/lib/query.h

Modified: trunk/lib/query.h
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/lib/query.h?rev=1607&r1=1606&r2=1607&view=diff
==============================================================================
--- trunk/lib/query.h (original)
+++ trunk/lib/query.h Tue Jun 26 03:23:17 2007
@@ -562,7 +562,7 @@
        template <class Sequence>
        void storein_sequence(Sequence& con, query_reset r = RESET_QUERY)
        {
-               storein_sequence_(con, def, r);
+               storein_sequence(con, def, r);
        }
 
        /// \brief Execute a query, storing the result set in an STL


_______________________________________________
Mysqlpp-commits mailing list
[email protected]
https://mail.gna.org/listinfo/mysqlpp-commits

Reply via email to