File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ int64_t mktime_internal(const tm *tm_out);
3030
3131// Update the "tm" structure's year, month, etc. members from seconds.
3232// "total_seconds" is the number of seconds since January 1st, 1970.
33- extern int64_t update_from_seconds (int64_t total_seconds, tm *tm);
33+ int64_t update_from_seconds (int64_t total_seconds, tm *tm);
3434
3535// TODO(michaelrj): move these functions to use ErrorOr instead of setting
3636// errno. They always accompany a specific return value so we only need the one
@@ -133,9 +133,7 @@ class TMReader final {
133133 }
134134
135135public:
136- LIBC_INLINE constexpr explicit TMReader (const tm *tmptr) : timeptr(tmptr) {
137- ;
138- }
136+ LIBC_INLINE constexpr explicit TMReader (const tm *tmptr) : timeptr(tmptr) {}
139137
140138 // Strings
141139 LIBC_INLINE constexpr cpp::optional<cpp::string_view>
You can’t perform that action at this time.
0 commit comments