@@ -104,16 +104,13 @@ class Timestamp {
104
104
* Converts `time_t` to a `Timestamp`.
105
105
*
106
106
* @param seconds_since_unix_epoch
107
- * @parblock
108
107
* The number of seconds of UTC time since Unix epoch
109
108
* 1970-01-01T00:00:00Z. Can be negative to represent dates before the
110
109
* epoch. Must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z
111
110
* inclusive; otherwise, assertion failure will be triggered.
112
- *
113
111
* Note that while the epoch of `time_t` is unspecified, it's usually Unix
114
112
* epoch. If this assumption is broken, this function will produce
115
113
* incorrect results.
116
- * @endparblock
117
114
*
118
115
* @return a new timestamp with the given number of seconds and zero
119
116
* nanoseconds.
@@ -125,17 +122,14 @@ class Timestamp {
125
122
* Converts `std::chrono::time_point` to a `Timestamp`.
126
123
*
127
124
* @param time_point
128
- * @parblock
129
125
* The time point with system clock's epoch, which is
130
126
* presumed to be Unix epoch 1970-01-01T00:00:00Z. Can be negative to
131
127
* represent dates before the epoch. Must be from 0001-01-01T00:00:00Z to
132
128
* 9999-12-31T23:59:59Z inclusive; otherwise, assertion failure will be
133
129
* triggered.
134
- *
135
130
* Note that while the epoch of `std::chrono::system_clock` is
136
131
* unspecified, it's usually Unix epoch. If this assumption is broken,
137
132
* this constructor will produce incorrect results.
138
- * @endparblock
139
133
*/
140
134
static Timestamp FromTimePoint (
141
135
std::chrono::time_point<std::chrono::system_clock> time_point);
0 commit comments