Author: wyoung
Date: Thu Jun 20 20:55:25 2013
New Revision: 2726

URL: http://svn.gna.org/viewcvs/mysqlpp?rev=2726&view=rev
Log:
Removed "virtual" from ConnectionPool::safe_grab(), as that would break
the 3.1.1 ABI w.r.t 3.1.0 in the same way 3.1.0 did to 3.0.7!  Nothing
in the current code depends on being able to override this.  If an
external user does need it, they can patch the library themselves, or
wait for the mythical MySQL++ 4.0.

Modified:
    trunk/lib/cpool.h

Modified: trunk/lib/cpool.h
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/lib/cpool.h?rev=2726&r1=2725&r2=2726&view=diff
==============================================================================
--- trunk/lib/cpool.h (original)
+++ trunk/lib/cpool.h Thu Jun 20 20:55:25 2013
@@ -159,7 +159,7 @@
        /// from under your application.
        ///
        /// \retval a pointer to the connection
-       virtual Connection* safe_grab();
+       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