So I want to access a singleton class from multiple threads. Conceptually I d think that calling non-const methods on this singleton instance would be not thread-safe. I ve been looking online and no one seems to address this possible issue. Is there an actual problem with this, is the only issue with Singleton s thread-safety, the initialization of the instance variable?
I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...