1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-26 14:37:44 +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 <mysql.h>
#include <stdexcept>
#include <vector>
Mysql::Connection::Connection( std::shared_ptr< MySqlBase > pBase,

View file

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

View file

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

View file

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

View file

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