mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-29 23:57:46 +00:00
should actually build now... hopefully...
This commit is contained in:
parent
d1969452b1
commit
99604a589c
5 changed files with 13 additions and 2 deletions
4
deps/mysqlConnector/Connection.cpp
vendored
4
deps/mysqlConnector/Connection.cpp
vendored
|
@ -4,6 +4,10 @@
|
|||
#include "PreparedStatement.h"
|
||||
#include <mysql.h>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
// fixes compile error when compiling with vs2019
|
||||
#include <stdexcept>
|
||||
#endif
|
||||
#include <vector>
|
||||
|
||||
Mysql::Connection::Connection( std::shared_ptr< MySqlBase > pBase,
|
||||
|
|
2
deps/mysqlConnector/Connection.h
vendored
2
deps/mysqlConnector/Connection.h
vendored
|
@ -3,6 +3,8 @@
|
|||
|
||||
#include <memory>
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
#include "MysqlCommon.h"
|
||||
|
||||
typedef struct st_mysql MYSQL;
|
||||
|
|
|
@ -2,8 +2,9 @@
|
|||
#define _PLAYERMINIMAL_H
|
||||
|
||||
#include <map>
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
#include <cstring>
|
||||
|
||||
namespace Sapphire::Api
|
||||
{
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
#ifndef SAPPHIRE_DBCOMMON_H
|
||||
#define SAPPHIRE_DBCOMMON_H
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace Sapphire::Db
|
||||
{
|
||||
struct ConnectionInfo
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
|
||||
#include <Common.h>
|
||||
#include <set>
|
||||
#include <string>
|
||||
|
||||
|
||||
namespace Sapphire
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue