Subtract from this date, the supplied number of days
| Return Type | Function name | Arguments |
|---|---|---|
| hzSDate& | hzSDate::operator-= | (uint32_t,) |
Declared and defined in file: hzDate.h
Function Logic:
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 ;
}