I need to take some of my 'existing' persistent member
variables (typically int and bool) and wrap them in std::atomic<> without
messing with my schema.
Can you suggest a strategy? I can imagine a number of ways
, but the best approach is not that obvious.
Andrew