mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-16 00:45:48 +08:00
15 lines
192 B
C++
15 lines
192 B
C++
#pragma once
|
|
|
|
namespace c11log {
|
|
namespace details {
|
|
struct null_mutex {
|
|
void lock() {
|
|
}
|
|
void unlock() {
|
|
}
|
|
bool try_lock() {
|
|
return true;
|
|
}
|
|
};
|
|
}
|
|
} |