From aa53689da2a380e2197f40460034759e9ab781aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Andriot?= Date: Mon, 18 Nov 2019 14:38:03 +0100 Subject: [PATCH] Remove bool/my_bool artifact, the 'bool' data type is part of the c++ language and was added to c compilers with c99. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- src/sql/drivers/mysql/qsql_mysql.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/drivers/mysql/qsql_mysql.cpp b/src/sql/drivers/mysql/qsql_mysql.cpp index 2d84b65..6127a51 100644 --- a/src/sql/drivers/mysql/qsql_mysql.cpp +++ b/src/sql/drivers/mysql/qsql_mysql.cpp @@ -505,7 +505,7 @@ bool QMYSQLDriver::open( const QString& db, return FALSE; } - my_bool reconnect = 0; + bool reconnect = 0; for ( it = opts.begin(); it != opts.end(); ++it ) { QString opt( (*it).upper() ); if ( opt == "CLIENT_COMPRESS" )