fix return myName

This commit is contained in:
Willy 2026-06-08 15:00:21 +02:00
parent 6f1f844ffe
commit f2b41102b5
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ Person::Person() : myName("Willy"), myAge(32)
std::string Person::getName() const
{
return "myName";
return myName;
}
unsigned int Person::getAge() const