- temporarily address issue with GCC - ultimately this issue will need to be fixed: https://github.com/ZDoom/Raze/actions/runs/8727418834/job/23944876872

This commit is contained in:
Rachael Alexanderson 2024-04-17 19:20:27 -04:00
parent 23efdf95a1
commit 6dcb8c0f6e
No known key found for this signature in database
GPG key ID: 26A8ACCE97115EE0

View file

@ -214,9 +214,10 @@ class TObjPtr
mutable DObject *o;
};
public:
TObjPtr() = default;
// before doing a backend sync - this needs to be addressed: https://github.com/ZDoom/Raze/actions/runs/8727418834/job/23944876872
//TObjPtr() = default;
TObjPtr(T t) : pp(t) {}
//TObjPtr(T t) : pp(t) {}
constexpr TObjPtr<T>& operator=(T q) noexcept
{