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 Jun 13, 2024. It is now read-only.
Alien provides two API move and ref. However they are not compatible.
Linking with both at the same time results in weird behavior. For example, objects are defined in both libraries and their dtors can collide.
To solve this, we can either:
Find a way to forbid linking with both libraries at the same time;
Putting APIs in their own namespace.
The first solution forbids an user to exploit both APIs which may be interesting on a large code.
Alien provides two API
moveandref. However they are not compatible.Linking with both at the same time results in weird behavior. For example, objects are defined in both libraries and their dtors can collide.
To solve this, we can either:
The first solution forbids an user to exploit both APIs which may be interesting on a large code.