Subtract from this date, the supplied number of days

Return TypeFunction nameArguments
hzSDate&hzSDate::operator-=(uint32_t,)

Declared and defined in file: hzDate.h

Function Logic:

0:START 1:m_days items 2:Return *this

Function body:

hzSDate& hzSDate::operator-= (uint32_t nDays)
   {
       //  Subtract from this date, the supplied number of days
       m_days -= nDays ;
       m_days = m_days<0? 0: m_days>DAYS_IN_10K ? DAYS_IN_10K : m_days ;
       return *this ;
   }