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:
parent
3a11509e00
commit
eb5f9feadb
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue