You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As part of #4041 tried to get Tm auto serializing, but was getting
/Volumes/SSD/rust/src/libstd/time.rs:138:8: 138:11 error: binding `__v0` should use ref or copy mode
/Volumes/SSD/rust/src/libstd/time.rs:138 Tm_(Tm_)
^~~
/Volumes/SSD/rust/src/libstd/time.rs:138:8: 138:11 error: binding `__v0` should use ref or copy mode
/Volumes/SSD/rust/src/libstd/time.rs:138 Tm_(Tm_)
^~~
error: aborting due to 2 previous errors
The text was updated successfully, but these errors were encountered:
erickt
added a commit
to erickt/rust
that referenced
this issue
Nov 27, 2012
This avoids rust-lang#4044 by not using the enum wrapper, and turning Tm_
directly into a struct. Along the way it modernizes the codebase
to eliminate no-implicit-copies warnings.
This avoids rust-lang#4044 by not using the enum wrapper, and turning Tm_
directly into a struct. Along the way it modernizes the codebase
to eliminate no-implicit-copies warnings.
As part of #4041 tried to get Tm auto serializing, but was getting
The text was updated successfully, but these errors were encountered: