replaced 'lk' with 'lg'

This commit is contained in:
Alexander Zhirov 2021-10-10 23:48:41 +03:00
parent 088984b93b
commit 100e897201
1 changed files with 2 additions and 2 deletions

View File

@ -16,9 +16,9 @@ static std::mutex mtx_cout;
class pcout
{
private:
std::lock_guard<std::mutex> lk;
std::lock_guard<std::mutex> lg;
public:
pcout() : lk(std::lock_guard<std::mutex>(mtx_cout))
pcout() : lg(std::lock_guard<std::mutex>(mtx_cout))
{
}