mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-29 21:32:52 +01:00
Core: Fix couple of warnings
--HG-- branch : trunk
This commit is contained in:
@@ -271,7 +271,7 @@ bool ChatHandler::HandleDebugUpdateWorldStateCommand(const char* args)
|
||||
return true;
|
||||
}
|
||||
|
||||
bool ChatHandler::HandleDebugAreaTriggers(const char* args)
|
||||
bool ChatHandler::HandleDebugAreaTriggers(const char* /*args*/)
|
||||
{
|
||||
Player* plr = m_session->GetPlayer();
|
||||
if (!plr->isDebugAreaTriggers)
|
||||
|
||||
@@ -33,17 +33,17 @@
|
||||
#include "Timer.h"
|
||||
|
||||
MySQLConnection::MySQLConnection(MySQLConnectionInfo& connInfo) :
|
||||
m_connectionInfo(connInfo),
|
||||
m_queue(NULL),
|
||||
m_worker(NULL),
|
||||
m_Mysql(NULL)
|
||||
m_Mysql(NULL),
|
||||
m_connectionInfo(connInfo)
|
||||
{
|
||||
}
|
||||
|
||||
MySQLConnection::MySQLConnection(ACE_Activation_Queue* queue, MySQLConnectionInfo& connInfo) :
|
||||
m_connectionInfo(connInfo),
|
||||
m_queue(queue),
|
||||
m_Mysql(NULL)
|
||||
m_Mysql(NULL),
|
||||
m_connectionInfo(connInfo)
|
||||
{
|
||||
m_worker = new DatabaseWorker(m_queue, this);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user