diff options
| author | pravic <[email protected]> | 2016-06-06 23:07:53 +0300 |
|---|---|---|
| committer | pravic <[email protected]> | 2016-06-06 23:07:53 +0300 |
| commit | f2db0929feeb53567655dbdebba7e6b1c3f2f69e (patch) | |
| tree | c2cf041f838782f9ddd8994146f52e8f498bfe07 /librustc_unicode/u_str.rs | |
| parent | add 'netio' native import library (diff) | |
| parent | Merge branch 'nofp_patch' into libcore_nofp (diff) | |
| download | kmd-env-rs-master.tar.xz kmd-env-rs-master.zip | |
Diffstat (limited to 'librustc_unicode/u_str.rs')
| -rw-r--r-- | librustc_unicode/u_str.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/librustc_unicode/u_str.rs b/librustc_unicode/u_str.rs index 18734a6..0bac44b 100644 --- a/librustc_unicode/u_str.rs +++ b/librustc_unicode/u_str.rs @@ -144,7 +144,9 @@ impl<I> Utf16Encoder<I> { } } -impl<I> Iterator for Utf16Encoder<I> where I: Iterator<Item=char> { +impl<I> Iterator for Utf16Encoder<I> + where I: Iterator<Item = char> +{ type Item = u16; #[inline] |