fixed compliation error on gcc 4.8.x

This commit is contained in:
gabime 2015-05-12 19:03:01 +03:00
parent 1b2c8b9d3e
commit 1dcaa45443

View File

@ -158,7 +158,7 @@ private:
throw spdlog_ex("logger with name " + logger_name + " already exists");
_loggers[logger->name()] = logger;
}
registry_t<Mutex>() = default;
registry_t<Mutex>(){}
registry_t<Mutex>(const registry_t<Mutex>&) = delete;
registry_t<Mutex>& operator=(const registry_t<Mutex>&) = delete;
Mutex _mutex;