operator bool() for DelayedConstruction

This commit is contained in:
2021-07-09 21:38:35 +02:00
parent 79a7f4ef85
commit a33ed96bc5

View File

@ -87,6 +87,8 @@ public:
bool constructed() const { return m_constructed; }
operator bool() const { return m_constructed; }
private:
bool m_constructed{};
union Helper