Merge pull request #1651

fc91e6a7 Fixed a deadlock issue with easylogger++ (NanoAkron)
release-v0.4.0.1
Riccardo Spagni 8 years ago
commit 345396e056
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -1104,8 +1104,8 @@ namespace el {
ELPP_UNUSED(ms);
# endif // ELPP_ASYNC_LOGGING
}
typedef std::mutex Mutex;
typedef std::lock_guard<std::mutex> ScopedLock;
typedef std::recursive_mutex Mutex;
typedef std::lock_guard<std::recursive_mutex> ScopedLock;
# endif // !ELPP_USE_STD_THREADING
#else
namespace internal {

Loading…
Cancel
Save