Remove extraneous string copy constructor

This commit is contained in:
Kawe Mazidjatari 2022-10-20 15:07:40 +02:00
parent f887ac509e
commit f6e0fd8d92

View File

@ -574,7 +574,7 @@ void CConsole::ProcessCommand(string svCommand)
}
}
m_vHistory.push_back(string(svCommand));
m_vHistory.push_back(svCommand);
m_Logger.m_bScrollToBottom = true;
}