You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The title says it all.
The problem is, the destructors get created on a case by case basis when a Node has that type, and if the Vector type is never used anywhere else it doesn't create a destructor for it.
The text was updated successfully, but these errors were encountered:
To be honest the whole idea of only creating the destructor if there's ever a value of that type is inherently flawed. I have done it like this because it was the only option that didn't fail in one of the cases I encountered. Maybe the short term solution is to also generate the constructor/destructor pair when referring to the Type itself.
The title says it all.
The problem is, the destructors get created on a case by case basis when a Node has that type, and if the Vector type is never used anywhere else it doesn't create a destructor for it.
The text was updated successfully, but these errors were encountered: