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
Currently the streets_configuration_singleton is a streets_singleton<streets_configuration_singleton>. This makes the code difficult to read and also causes a circle call to deconstructors if the streets_singleton deconstructor calls delete on the managed instance. This enhancement is to create a separate class for holding the streets_configuration logic and data and using that as the template type.
Reasoning for new functionality
This makes the code difficult to read and also causes a circle call to deconstructors if the streets_singleton deconstructor calls delete on the managed instance. This enhancement is to create a separate class for holding the streets_configuration logic and data and using that as the template type.
The text was updated successfully, but these errors were encountered:
Summary
Currently the streets_configuration_singleton is a streets_singleton<streets_configuration_singleton>. This makes the code difficult to read and also causes a circle call to deconstructors if the streets_singleton deconstructor calls delete on the managed instance. This enhancement is to create a separate class for holding the streets_configuration logic and data and using that as the template type.
Reasoning for new functionality
This makes the code difficult to read and also causes a circle call to deconstructors if the streets_singleton deconstructor calls delete on the managed instance. This enhancement is to create a separate class for holding the streets_configuration logic and data and using that as the template type.
The text was updated successfully, but these errors were encountered: