mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
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:
parent
1f1f5f5ae8
commit
3e9f405474
@ -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)
|
||||
|
2
r5dev/thirdparty/cppnet/cppkore/Console.cpp
vendored
2
r5dev/thirdparty/cppnet/cppkore/Console.cpp
vendored
@ -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
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user