replaced 'lk' with 'lg'
This commit is contained in:
parent
088984b93b
commit
100e897201
|
@ -16,9 +16,9 @@ static std::mutex mtx_cout;
|
||||||
class pcout
|
class pcout
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
std::lock_guard<std::mutex> lk;
|
std::lock_guard<std::mutex> lg;
|
||||||
public:
|
public:
|
||||||
pcout() : lk(std::lock_guard<std::mutex>(mtx_cout))
|
pcout() : lg(std::lock_guard<std::mutex>(mtx_cout))
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue