about summary refs log tree commit diff
path: root/src/libstd/dynamic_lib.rs
AgeCommit message (Collapse)AuthorLines
2014-06-13librustc: Forbid `transmute` from being called on types whose size isPatrick Walton-1/+1
only known post-monomorphization, and report `transmute` errors before the code is generated for that `transmute`. This can break code that looked like: unsafe fn f<T>(x: T) { let y: int = transmute(x); } Change such code to take a type parameter that has the same size as the type being transmuted to. Closes #12898. [breaking-change]
2014-06-12Basic iOS supportValerii Hiora-1/+2
2014-06-09std: Move dynamic_lib from std::unstable to stdBrian Anderson-0/+332
This leaves a deprecated reexport in place temporarily. Closes #1457.