How to prevent multiple initializations of a singleton in C++ with threading?
👀 Views: 3
💬 Answers: 1
📅 Created: 2025-05-31
c++ singleton multithreading
I'm working on a C++ application using C++17 and I've implemented a singleton pattern for a configuration manager. The class is intended to load configurations ...