I\'ve got an application that\'s using a static library I made. One .cpp file in the library has a static variable declaration, whose ctor calls a function on a singleton th
Refactor the classes doing static initialization so they do not depend on any other such classes. That is, make each class's initialization independent and self-sufficient.