From f5990402126ad14618ed6b35679d0c565817e3e8 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 6 Jun 2022 13:08:23 +0200 Subject: [PATCH] - GCC needs this commented out but really shouldn't. --- source/common/objects/dobjgc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/common/objects/dobjgc.h b/source/common/objects/dobjgc.h index 1fd293263..8be9d56a3 100644 --- a/source/common/objects/dobjgc.h +++ b/source/common/objects/dobjgc.h @@ -183,10 +183,12 @@ public: TObjPtr() = default; TObjPtr(const TObjPtr &q) = default; +#if 0 // Courtesy of GCC being stupid and not fully recognizing TobjPtr as trivial. GZDoom needs this constructor, but it breaks compilation in Raze, but only with GCC. TObjPtr(T q) noexcept : pp(q) { } +#endif T operator=(T q) { pp = q;