diff options
author | 12xx12 <44411062+12xx12@users.noreply.github.com> | 2021-03-07 17:31:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-07 17:31:43 +0100 |
commit | 3daf253b7f4ed8243e3262faee35219335e3e088 (patch) | |
tree | 72d7c719838d23c979fdc57f1d6053bab38d8275 /src/Protocol/Authenticator.cpp | |
parent | Mitigate MSVC crash (#5146) (diff) | |
download | cuberite-3daf253b7f4ed8243e3262faee35219335e3e088.tar cuberite-3daf253b7f4ed8243e3262faee35219335e3e088.tar.gz cuberite-3daf253b7f4ed8243e3262faee35219335e3e088.tar.bz2 cuberite-3daf253b7f4ed8243e3262faee35219335e3e088.tar.lz cuberite-3daf253b7f4ed8243e3262faee35219335e3e088.tar.xz cuberite-3daf253b7f4ed8243e3262faee35219335e3e088.tar.zst cuberite-3daf253b7f4ed8243e3262faee35219335e3e088.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Authenticator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Protocol/Authenticator.cpp b/src/Protocol/Authenticator.cpp index 995ba1394..e23691edc 100644 --- a/src/Protocol/Authenticator.cpp +++ b/src/Protocol/Authenticator.cpp @@ -67,7 +67,7 @@ void cAuthenticator::Authenticate(int a_ClientID, const AString & a_UserName, co } cCSLock LOCK(m_CS); - m_Queue.push_back(cUser(a_ClientID, a_UserName, a_ServerHash)); + m_Queue.emplace_back(a_ClientID, a_UserName, a_ServerHash); m_QueueNonempty.Set(); } |