From 3d57170e6985ab322c8b35771e397d7a6d2ceff0 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 18 Apr 2024 07:09:55 +0200 Subject: [PATCH] removed TObjPtr's constructors that were reinstated for unknown reasons. This class needs to be constructor-less so that even GCC accepts it as trivial. --- src/common/objects/dobjgc.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/common/objects/dobjgc.h b/src/common/objects/dobjgc.h index 39e7d88a8..969551d37 100644 --- a/src/common/objects/dobjgc.h +++ b/src/common/objects/dobjgc.h @@ -214,9 +214,6 @@ class TObjPtr mutable DObject *o; }; public: - TObjPtr() = default; - - TObjPtr(T t) : pp(t) {} constexpr TObjPtr& operator=(T q) noexcept {