Skip to content

Commit 0a58a1c

Browse files
[libc] update todo with bug link
1 parent fbd2365 commit 0a58a1c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libc/src/time/mktime.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@ LLVM_LIBC_FUNCTION(time_t, mktime, (struct tm * tm_out)) {
106106
}
107107
}
108108

109-
// TODO(rtenneti): Need to handle timezone and update of tm_isdst.
109+
// TODO: https://github.com/llvm/llvm-project/issues/121962
110+
// Need to handle timezone and update of tm_isdst.
110111
int64_t seconds = tm_out->tm_sec +
111112
tm_out->tm_min * TimeConstants::SECONDS_PER_MIN +
112113
tm_out->tm_hour * TimeConstants::SECONDS_PER_HOUR +

0 commit comments

Comments
 (0)