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.
This commit is contained in:
Christoph Oelckers 2024-04-18 07:09:55 +02:00
parent b20f09a910
commit 3d57170e69

View file

@ -214,9 +214,6 @@ class TObjPtr
mutable DObject *o;
};
public:
TObjPtr() = default;
TObjPtr(T t) : pp(t) {}
constexpr TObjPtr<T>& operator=(T q) noexcept
{