1
0
mirror of https://github.com/gabime/spdlog.git synced 2025-03-14 01:59:53 +08:00
spdlog/include/c11log/details/null_mutex.h
2014-01-25 11:09:04 +02:00

17 lines
191 B
C++

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