mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-30 15:01:29 +00:00
clang-modernize -use-auto convert for world/launcher_list.cpp
This commit is contained in:
parent
da13affebc
commit
3df27a9379
@ -130,7 +130,7 @@ LauncherLink *LauncherList::FindByZone(const char *short_name) {
|
||||
}
|
||||
|
||||
void LauncherList::Add(EmuTCPConnection *conn) {
|
||||
LauncherLink *it = new LauncherLink(nextID++, conn);
|
||||
auto it = new LauncherLink(nextID++, conn);
|
||||
_log(WORLD__LAUNCH, "Adding pending launcher %d", it->GetID());
|
||||
m_pendingLaunchers.push_back(it);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user