What are the limitations of using C++17 inline static variables for populating a factory?
The Context I have a toy ECS architecture where I want to serialize and deserialize the whole app state for hot-reloading DLLs. I don’t want the user to have to register all components at the beginning of the application/module init. That means I have to somewhat infer what component types are used across my application […]