diff --git a/src/pvxs/log.h b/src/pvxs/log.h index e628b39..891040b 100644 --- a/src/pvxs/log.h +++ b/src/pvxs/log.h @@ -27,7 +27,6 @@ enum struct Level { struct logger { const char *name; - // atomic using epicsAtomic (std::atomic<> may not be statically initializable) std::atomic lvl; constexpr logger(const char *name) :name(name), lvl{-1} {}