Skip to content

Commit

Permalink
update: log
Browse files Browse the repository at this point in the history
  • Loading branch information
BA3000 committed May 13, 2024
1 parent b11c207 commit 87dc97f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions singleton/src/lazySingletonTS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
#include <iostream>

LazySingletonTS::LazySingletonTS() {
std::cout << "lazySingletonTS ctor called" << std::endl;
std::cout << "[LazySingletonTS::LazySingletonTS] lazySingletonTS ctor called" << std::endl;
}

void LazySingletonTS::Dosomething() {
std::cout << "lazySingletonTS do something" << std::endl;
std::cout << "[LazySingletonTS::Dosomething] lazySingletonTS do something" << std::endl;
}

0 comments on commit 87dc97f

Please sign in to comment.