From 6dcb8c0f6e02eb271e74410274e08bc11f130e32 Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Wed, 17 Apr 2024 19:20:27 -0400 Subject: [PATCH] - temporarily address issue with GCC - ultimately this issue will need to be fixed: https://github.com/ZDoom/Raze/actions/runs/8727418834/job/23944876872 --- source/common/objects/dobjgc.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/common/objects/dobjgc.h b/source/common/objects/dobjgc.h index 39e7d88a8..d81964787 100644 --- a/source/common/objects/dobjgc.h +++ b/source/common/objects/dobjgc.h @@ -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& operator=(T q) noexcept {