mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-28 06:53:29 +00:00
- 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:
parent
23efdf95a1
commit
6dcb8c0f6e
1 changed files with 3 additions and 2 deletions
|
@ -214,9 +214,10 @@ class TObjPtr
|
||||||
mutable DObject *o;
|
mutable DObject *o;
|
||||||
};
|
};
|
||||||
public:
|
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
|
constexpr TObjPtr<T>& operator=(T q) noexcept
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue