mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-16 00:45:48 +08:00
Minor change is typedef order
This commit is contained in:
parent
b9dc8226b4
commit
8208b49298
@ -169,10 +169,10 @@ private:
|
||||
async_overflow_policy _overflow_policy = async_overflow_policy::block_retry;
|
||||
std::function<void()> _worker_warmup_cb = nullptr;
|
||||
};
|
||||
#ifndef SPDLOG_NO_REGISTRY_MUTEX
|
||||
typedef registry_t<std::mutex> registry;
|
||||
#else
|
||||
#ifdef SPDLOG_NO_REGISTRY_MUTEX
|
||||
typedef registry_t<spdlog::details::null_mutex> registry;
|
||||
#else
|
||||
typedef registry_t<std::mutex> registry;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user