mirror of https://github.com/gabime/spdlog.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
197 B
C
18 lines
197 B
C
![]()
11 years ago
|
#pragma once
|
||
|
|
||
|
// null, no cost mutex
|
||
|
|
||
|
namespace c11log {
|
||
|
namespace details {
|
||
|
struct null_mutex
|
||
|
{
|
||
|
void lock() {}
|
||
|
void unlock() {}
|
||
|
bool try_lock()
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
}
|