spdlog/include/c11log/details/null_mutex.h
2014-10-10 21:36:32 +03:00

18 lines
197 B
C++

#pragma once
// null, no cost mutex
namespace c11log {
namespace details {
struct null_mutex
{
void lock() {}
void unlock() {}
bool try_lock()
{
return true;
}
};
}
}