std: Change names of transmute's type parameters

from L, G to T, U. I don't know what L and G mean.
T, U easier to understand.
This commit is contained in:
Brian Anderson 2014-05-06 23:33:41 -07:00
parent 3a11509e00
commit eb5f9feadb

View file

@ -28,7 +28,7 @@ use ptr::copy_nonoverlapping_memory;
* ```
*/
#[inline]
pub unsafe fn transmute<L, G>(thing: L) -> G {
pub unsafe fn transmute<T, U>(thing: T) -> U {
intrinsics::transmute(thing)
}