mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-15 20:31:16 +08:00
Fix include for iso646 missing for MSVC
This commit is contained in:
parent
c550694b44
commit
42bd3cc79b
@ -34,6 +34,10 @@
|
||||
#include <sqlpp11/exception.h>
|
||||
#include <sqlpp11/mysql/sqlpp_mysql.h>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#include <iso646.h>
|
||||
#endif
|
||||
|
||||
namespace sqlpp
|
||||
{
|
||||
namespace mysql
|
||||
|
@ -39,6 +39,7 @@
|
||||
#include "detail/prepared_statement_handle.h"
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#include <iso646.h>
|
||||
#pragma warning(disable : 4800) // int to bool
|
||||
#endif
|
||||
namespace sqlpp
|
||||
|
@ -35,6 +35,7 @@
|
||||
#include <sqlpp11/sqlite3/prepared_statement_handle.h>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#include <iso646.h>
|
||||
#pragma warning(push)
|
||||
#pragma warning(disable : 4251)
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user