diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2025-06-10 15:40:49 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2025-06-16 11:54:15 +0200 |
| commit | aec32486a8d018b398fc9499898d6ab7dbe93741 (patch) | |
| tree | 92130ed565a9d474d6727d5fa2d025efae32f441 /library/alloc/src/string.rs | |
| parent | 0e141a2be1796c4bab82484fac507166667c687b (diff) | |
| download | rust-aec32486a8d018b398fc9499898d6ab7dbe93741.tar.gz rust-aec32486a8d018b398fc9499898d6ab7dbe93741.zip | |
Specialize `ToString` implementation on `u128` and `i128`
Diffstat (limited to 'library/alloc/src/string.rs')
| -rw-r--r-- | library/alloc/src/string.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/alloc/src/string.rs b/library/alloc/src/string.rs index 37614a7ca45..a3174d74e18 100644 --- a/library/alloc/src/string.rs +++ b/library/alloc/src/string.rs @@ -2870,6 +2870,7 @@ impl_to_string! { i32, u32, i64, u64, isize, usize, + i128, u128, } #[cfg(not(no_global_oom_handling))] |
