Fix MSVC error 'C2280' and 'C2955'

Fix 'attempting to reference a deleted function'.
Fix 'use of class requires a template argument list'.
This commit is contained in:
Kawe Mazidjatari 2023-03-19 17:58:01 +01:00
parent 1f1f5f5ae8
commit 3e9f405474
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ template<typename T>
inline void AtomicListBase<T>::Enqueue(T& Item)
{
{
std::lock_guard lock(this->_SyncContext);
std::lock_guard<std::mutex> lock(this->_SyncContext);
this->_List.EmplaceBack(Item);
}
@ -46,7 +46,7 @@ template<typename T>
inline bool AtomicListBase<T>::Dequeue(T& Item)
{
{
std::lock_guard lock(this->_SyncContext);
std::lock_guard<std::mutex> lock(this->_SyncContext);
const auto Length = this->_List.Count();
if (Length > 0)

View File

@ -5,7 +5,7 @@
namespace System
{
// This holds the global std handle for the input stream
__ConsoleInit Console::ConsoleInstance = __ConsoleInit();
__ConsoleInit Console::ConsoleInstance /*= __ConsoleInit()*/;
enum class ControlKeyState
{