fix return myName
This commit is contained in:
parent
6f1f844ffe
commit
f2b41102b5
|
|
@ -6,7 +6,7 @@ Person::Person() : myName("Willy"), myAge(32)
|
||||||
|
|
||||||
std::string Person::getName() const
|
std::string Person::getName() const
|
||||||
{
|
{
|
||||||
return "myName";
|
return myName;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int Person::getAge() const
|
unsigned int Person::getAge() const
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue