Author: wyoung
Date: Wed Jul 11 23:30:03 2007
New Revision: 1668

URL: http://svn.gna.org/viewcvs/mysqlpp?rev=1668&view=rev
Log:
Removed a trailing comma from an enum list.  It's techically illegal in
C++ right now, even though all decent compilers understand it.  GCC
barfs on it in pedantic mode, so out it goes.  Patch by Andrew Sayers
<[EMAIL PROTECTED]>

Modified:
    trunk/lib/connection.h

Modified: trunk/lib/connection.h
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/lib/connection.h?rev=1668&r1=1667&r2=1668&view=diff
==============================================================================
--- trunk/lib/connection.h (original)
+++ trunk/lib/connection.h Wed Jul 11 23:30:03 2007
@@ -479,7 +479,7 @@
        enum OptionError {
                opt_err_type,
                opt_err_value,
-               opt_err_conn,
+               opt_err_conn
        };
        
        /// \brief Drop the connection to the database server


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

Reply via email to