My GCC built fine, but lets make Travis happy

This commit is contained in:
Akkadius 2015-01-22 00:46:45 -06:00
parent 83e90ddc6d
commit d8926861b6
2 changed files with 4 additions and 3 deletions

View File

@ -77,6 +77,8 @@ namespace Console {
EQEmuLogSys::EQEmuLogSys(){
on_log_gmsay_hook = [](uint16 log_type, std::string&) {};
bool file_logs_enabled = false;
int log_platform = 0;
}
EQEmuLogSys::~EQEmuLogSys(){

View File

@ -141,9 +141,9 @@ public:
LogSettings log_settings[Logs::LogCategory::MaxCategoryID];
bool file_logs_enabled = false; /* Set when log settings are loaded to determine if keeping a file open is necessary */
bool file_logs_enabled; /* Set when log settings are loaded to determine if keeping a file open is necessary */
int log_platform = 0; /* Sets Executable platform (Zone/World/UCS) etc. */
int log_platform; /* Sets Executable platform (Zone/World/UCS) etc. */
std::string platform_file_name; /* File name used in writing logs */
@ -152,7 +152,6 @@ public:
void OnLogHookCallBackZone(std::function<void(uint16 log_type, std::string&)> f) { on_log_gmsay_hook = f; }
private:
bool zone_general_init = false;
std::function<void(uint16 log_category, std::string&)> on_log_gmsay_hook;
std::string FormatOutMessageString(uint16 log_category, std::string in_message);