Skip to content

Commit 70d3633

Browse files
committed
libstd: Fix some build breakage
1 parent 59bdd8b commit 70d3633

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/time.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ extern mod rustrt {
3636
/// A record specifying a time value in seconds and nanoseconds.
3737
type Timespec = {sec: i64, nsec: i32};
3838

39-
impl timespec : Eq {
40-
pure fn eq(&&other: timespec) -> bool {
39+
impl Timespec : Eq {
40+
pure fn eq(&&other: Timespec) -> bool {
4141
self.sec == other.sec && self.nsec == other.nsec
4242
}
4343
}

0 commit comments

Comments
 (0)