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
If you separate Components by different header files, you can get issue with wrong order of statics initialization. In this case, components factories vector can be initialized after all or some components, and in this case it can loose some values because of vector initialization. To fix this, you can change BaseComponent::sFactory with:
`
If you separate Components by different header files, you can get issue with wrong order of statics initialization. In this case, components factories vector can be initialized after all or some components, and in this case it can loose some values because of vector initialization. To fix this, you can change
BaseComponent::sFactory
with:`
`
in this case we can guarantee that factories vector is created and initialized before any actions with it.
The text was updated successfully, but these errors were encountered: