General recommendation online seems to be to use auto where possible.
But this doesn't work:
auto cnt = std::atomic<int>{0};
While this works fine:
std::atomic<int> cnt {0};
Is there a recommended way to use this with auto? Or should I just assume that auto is not possible with this?