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
{{ message }}
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
In object_pool.h, line 48, there is a struct with a union in it:
In my environment (VS2013), the compiler cannot accept a union containing a class with a copy constructor. Can I remove the union definition, such as
, or I must use boost::variant to replace it?