This commit is contained in:
Michael Davidsaver
2019-12-23 19:19:09 -08:00
parent 4b5b134e74
commit af9be69f5d
-1
View File
@@ -27,7 +27,6 @@ enum struct Level {
struct logger {
const char *name;
// atomic using epicsAtomic (std::atomic<> may not be statically initializable)
std::atomic<int> lvl;
constexpr logger(const char *name) :name(name), lvl{-1} {}