1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-27 06:47:45 +00:00

Merge pull request #603 from takhlaq/develop

fix vs2019 build
This commit is contained in:
Mordred 2019-11-23 10:41:45 +01:00 committed by GitHub
commit 3abd2eec6b
5 changed files with 7 additions and 1 deletions

View file

@ -4,6 +4,7 @@
#include "PreparedStatement.h" #include "PreparedStatement.h"
#include <mysql.h> #include <mysql.h>
#include <stdexcept>
#include <vector> #include <vector>
Mysql::Connection::Connection( std::shared_ptr< MySqlBase > pBase, Mysql::Connection::Connection( std::shared_ptr< MySqlBase > pBase,

View file

@ -3,6 +3,7 @@
#include <memory> #include <memory>
#include <map> #include <map>
#include <string>
#include "MysqlCommon.h" #include "MysqlCommon.h"
typedef struct st_mysql MYSQL; typedef struct st_mysql MYSQL;

View file

@ -3,7 +3,8 @@
#include <map> #include <map>
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h> // ?
#include <string>
namespace Sapphire::Api namespace Sapphire::Api
{ {

View file

@ -1,6 +1,8 @@
#ifndef SAPPHIRE_DBCOMMON_H #ifndef SAPPHIRE_DBCOMMON_H
#define SAPPHIRE_DBCOMMON_H #define SAPPHIRE_DBCOMMON_H
#include <string>
namespace Sapphire::Db namespace Sapphire::Db
{ {
struct ConnectionInfo struct ConnectionInfo

View file

@ -3,6 +3,7 @@
#include <Common.h> #include <Common.h>
#include <set> #include <set>
#include <string>
namespace Sapphire namespace Sapphire
{ {