1 2 3 4 5 6 7
#include <atomic> int main() { std::atomic<int> Q(1); return Q; // Set break point at this line. }