fix(Core/Mysql): my_bool type conflict (#3060)

This commit is contained in:
Francesco Borzì
2020-05-26 23:31:16 +02:00
committed by GitHub
parent 72614dd053
commit 428133dc5e

View File

@@ -18,6 +18,10 @@
#endif
#include <mysql.h>
#if MYSQL_VERSION_ID >= 80001
typedef bool my_bool;
#endif
class ResultSet
{
public: