mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 14:41:28 +00:00
clang-modernize -use-auto convert for world/login_server_list.cpp
This commit is contained in:
parent
6b75e03d72
commit
8f18672690
@ -51,7 +51,7 @@ LoginServerList::~LoginServerList() {
|
|||||||
|
|
||||||
void LoginServerList::Add(const char* iAddress, uint16 iPort, const char* Account, const char* Password)
|
void LoginServerList::Add(const char* iAddress, uint16 iPort, const char* Account, const char* Password)
|
||||||
{
|
{
|
||||||
LoginServer* loginserver = new LoginServer(iAddress, iPort, Account, Password);
|
auto loginserver = new LoginServer(iAddress, iPort, Account, Password);
|
||||||
list.Insert(loginserver);
|
list.Insert(loginserver);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user