@@ -142,15 +142,10 @@ class COleDateTime
142142
143143```
144144bool operator==(const COleDateTime& date) const throw();
145-
146145bool operator!=(const COleDateTime& date) const throw();
147-
148146bool operator<(const COleDateTime& date) const throw();
149-
150147bool operator>(const COleDateTime& date) const throw();
151-
152148bool operator<=(const COleDateTime& date) const throw();
153-
154149bool operator>=(const COleDateTime& date) const throw();
155150```
156151
@@ -176,28 +171,22 @@ bool operator>=(const COleDateTime& date) const throw();
176171
177172```
178173COleDateTime() throw();
179-
180174COleDateTime(const VARIANT& varSrc) throw();
181-
182175COleDateTime(DATE dtSrc) throw();
183-
184176COleDateTime(time_t timeSrc) throw();
185-
186177COleDateTime(__time64_t timeSrc) throw();
187-
188178COleDateTime(const SYSTEMTIME& systimeSrc) throw();
189-
190179COleDateTime(const FILETIME& filetimeSrc) throw();
191180
192- COleDateTime(
193- int nYear,
194- int nMonth,
195- int nDay,
196- int nHour,
197- int nMin,
198- int nSec) throw();
181+ COleDateTime(int nYear,
182+ int nMonth,
183+ int nDay,
184+ int nHour,
185+ int nMin,
186+ int nSec) throw();
199187
200- COleDateTime(WORD wDosDate, WORD wDosTime) throw();
188+ COleDateTime(WORD wDosDate,
189+ WORD wDosTime) throw();
201190COleDateTime(const DBTIMESTAMP& dbts) throw();
202191```
203192
@@ -758,17 +747,11 @@ DateTimeStatus m_status;
758747
759748```
760749COleDateTime& operator=(const VARIANT& varSrc) throw();
761-
762750COleDateTime& operator=(DATE dtSrc) throw();
763-
764751COleDateTime& operator=(const time_t& timeSrc) throw();
765-
766752COleDateTime& operator=(const __time64_t& timeSrc) throw();
767-
768753COleDateTime& operator=(const SYSTEMTIME& systimeSrc) throw();
769-
770754COleDateTime& operator=(const FILETIME& filetimeSrc) throw();
771-
772755COleDateTime& operator=(const UDATE& udate) throw();
773756```
774757
@@ -802,9 +785,7 @@ COleDateTime& operator=(const UDATE& udate) throw();
802785
803786```
804787COleDateTime operator+(COleDateTimeSpan dateSpan) const throw();
805-
806788COleDateTime operator-(COleDateTimeSpan dateSpan) const throw();
807-
808789COleDateTimeSpan operator-(const COleDateTime& date) const throw();
809790```
810791
@@ -831,7 +812,6 @@ COleDateTimeSpan operator-(const COleDateTime& date) const throw();
831812
832813```
833814COleDateTime& operator+=(COleDateTimeSpan dateSpan) throw();
834-
835815COleDateTime& operator-=(COleDateTimeSpan dateSpan) throw();
836816```
837817
@@ -852,7 +832,7 @@ COleDateTime& operator-=(COleDateTimeSpan dateSpan) throw();
852832 Converts a ** ColeDateTime** value into a ** DATE** .
853833
854834```
855- operator DATE() const throw();
835+ operator DATE() const throw();
856836```
857837
858838### Remarks
0 commit comments