From 27cde22774c0d6460f2ca9c80aa95bfd352acf33 Mon Sep 17 00:00:00 2001 From: Tomasz Sowa Date: Thu, 24 May 2012 19:24:37 +0000 Subject: [PATCH] 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 --- date/date.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/date/date.h b/date/date.h index 433e9ea..9304877 100644 --- a/date/date.h +++ b/date/date.h @@ -478,6 +478,8 @@ template Date & Date::operator=(const CStringType * str) { Parse(str); + +return *this; } @@ -485,6 +487,8 @@ template Date & Date::operator=(const StringType & str) { Parse(str); + +return *this; }