We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d72057a commit c7f924cCopy full SHA for c7f924c
klib/io/rtc.hpp
@@ -144,7 +144,7 @@ namespace klib::io::rtc {
144
145
// check if we have more days than the
146
// current month has
147
- if (days < (klib::io::rtc::month_days[i] + leap_month)) {
+ if (days < static_cast<uint32_t>(klib::io::rtc::month_days[i] + leap_month)) {
148
break;
149
}
150
0 commit comments