This commit is contained in:
Ricardo Luís Vaz Silva 2024-02-13 17:54:07 -03:00 committed by Rachael Alexanderson
commit ad52e2cc1e
8 changed files with 128 additions and 59 deletions

View file

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