Fix compile error with mariadb's c connector lib

This commit is contained in:
loonycyborg 2019-11-04 19:31:53 +03:00
parent 5462d36561
commit b6aac0c77b

View File

@ -25,7 +25,7 @@
#include <boost/scope_exit.hpp>
#include <mysql/mysql.h>
#if defined(MYSQL_VERSION_ID) && MYSQL_VERSION_ID >= 80000
#if !defined(MARIADB_VERSION_ID) && defined(MYSQL_VERSION_ID) && MYSQL_VERSION_ID >= 80000
using my_bool = bool;
#endif