Skip to content

Commit 1da1ffe

Browse files
committed
make tm struct members public
1 parent c1ae35d commit 1da1ffe

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/windows/mod.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ s! {
7373
}
7474

7575
pub struct tm {
76-
tm_sec: ::c_int,
77-
tm_min: ::c_int,
78-
tm_hour: ::c_int,
79-
tm_mday: ::c_int,
80-
tm_mon: ::c_int,
81-
tm_year: ::c_int,
82-
tm_wday: ::c_int,
83-
tm_yday: ::c_int,
84-
tm_isdst: ::c_int,
76+
pub tm_sec: ::c_int,
77+
pub tm_min: ::c_int,
78+
pub tm_hour: ::c_int,
79+
pub tm_mday: ::c_int,
80+
pub tm_mon: ::c_int,
81+
pub tm_year: ::c_int,
82+
pub tm_wday: ::c_int,
83+
pub tm_yday: ::c_int,
84+
pub tm_isdst: ::c_int,
8585
}
8686

8787
pub struct timeval {

0 commit comments

Comments
 (0)