1
0
mirror of https://github.com/gabime/spdlog.git synced 2025-05-02 21:13:52 +00:00
spdlog/include/c11log/details/null_mutex.h
2014-02-21 22:51:54 +02:00

15 lines
192 B
C++

#pragma once
namespace c11log {
namespace details {
struct null_mutex {
void lock() {
}
void unlock() {
}
bool try_lock() {
return true;
}
};
}
}