mirror of
https://github.com/mawww/kakoune.git
synced 2024-11-23 23:34:12 +03:00
Avoid unneeded default constructor call in Optional
This commit is contained in:
parent
cc09c36fe0
commit
d207d13b68
@ -80,7 +80,11 @@ public:
|
||||
private:
|
||||
void destruct_ifn() { if (m_valid) m_value.~T(); }
|
||||
|
||||
union { T m_value; };
|
||||
union
|
||||
{
|
||||
struct {} m_empty; // disable default construction of value
|
||||
T m_value;
|
||||
};
|
||||
bool m_valid;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user