fixed: two operators: Date::operator=(const CStringType)

need 'return' statement


git-svn-id: svn://ttmath.org/publicrep/pikotools/trunk@413 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
Tomasz Sowa 2012-05-24 19:24:37 +00:00
parent 0ffb2b155f
commit 27cde22774
1 changed files with 4 additions and 0 deletions

View File

@ -478,6 +478,8 @@ template<class CStringType>
Date & Date::operator=(const CStringType * str)
{
Parse(str);
return *this;
}
@ -485,6 +487,8 @@ template<class StringType>
Date & Date::operator=(const StringType & str)
{
Parse(str);
return *this;
}