From 100e897201e2857ea292de09e030708baeffb096 Mon Sep 17 00:00:00 2001 From: Alexander Zhirov Date: Sun, 10 Oct 2021 23:48:41 +0300 Subject: [PATCH] replaced 'lk' with 'lg' --- lesson_6/exercise_1.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lesson_6/exercise_1.hpp b/lesson_6/exercise_1.hpp index ad56841..cb97401 100644 --- a/lesson_6/exercise_1.hpp +++ b/lesson_6/exercise_1.hpp @@ -16,9 +16,9 @@ static std::mutex mtx_cout; class pcout { private: - std::lock_guard lk; + std::lock_guard lg; public: - pcout() : lk(std::lock_guard(mtx_cout)) + pcout() : lg(std::lock_guard(mtx_cout)) { }