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
Parsers can have dependencies with each other, and we can't guarantee a parser always lives longer than those who depend on it. The current solution is simply copying the parser all the time. The plan is to use shared_ptr.
shared_ptr always has less overhead than std::functional when there is closure.
The text was updated successfully, but these errors were encountered:
Parsers can have dependencies with each other, and we can't guarantee a parser always lives longer than those who depend on it. The current solution is simply copying the parser all the time. The plan is to use shared_ptr.
shared_ptr always has less overhead than std::functional when there is closure.
The text was updated successfully, but these errors were encountered: