Author: wyoung
Date: Fri Jun 21 00:19:41 2013
New Revision: 2733

URL: http://svn.gna.org/viewcvs/mysqlpp?rev=2733&view=rev
Log:
Restored "virtual" on two functions we just removed it from.  Due to a
bogus svn log command, I thought these were added since 3.1.0, but they
were shipped in 3.1.0 and were part of the ABI breakage.  So, we keep
them!

Modified:
    trunk/lib/cpool.h

Modified: trunk/lib/cpool.h
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/lib/cpool.h?rev=2733&r1=2732&r2=2733&view=diff
==============================================================================
--- trunk/lib/cpool.h (original)
+++ trunk/lib/cpool.h Fri Jun 21 00:19:41 2013
@@ -103,7 +103,7 @@
        ///
        /// \retval a pointer to a different Connection object; not
        /// guaranteed to still be connected!
-       Connection* exchange(const Connection* pc);
+       virtual Connection* exchange(const Connection* pc);
 
        /// \brief Grab a free connection from the pool.
        ///
@@ -159,7 +159,7 @@
        /// from under your application.
        ///
        /// \retval a pointer to the connection
-       Connection* safe_grab();
+       virtual Connection* safe_grab();
 
        /// \brief Remove all unused connections from the pool
        void shrink() { clear(false); }


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

Reply via email to