about summary refs log tree commit diff
path: root/src/libcore/array
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2020-05-06 16:59:45 +0000
committerbors <bors@rust-lang.org>2020-05-06 16:59:45 +0000
commit1836e3b42a5b2f37fd79104eedbe8f48a5afdee6 (patch)
tree3ccc77fe3cc8fd490bb01d89e2d94815a9affec0 /src/libcore/array
parent339f574809bf8e4166b8de3cdbe7df181d37af3d (diff)
parentfbb4ccbee61dc95afcbcd05fd63053e2980edf97 (diff)
downloadrust-1836e3b42a5b2f37fd79104eedbe8f48a5afdee6.tar.gz
rust-1836e3b42a5b2f37fd79104eedbe8f48a5afdee6.zip
Auto merge of #71951 - Dylan-DPC:rollup-j9v1p0f, r=Dylan-DPC
Rollup of 7 pull requests

Successful merges:

 - #71269 (Define UB in float-to-int casts to saturate)
 - #71591 (use new interface to create threads on HermitCore)
 - #71819 (x.py: Give a more helpful error message if curl isn't installed)
 - #71893 (Use the `impls` module to import pre-existing dataflow analyses)
 - #71929 (Use -fvisibility=hidden for libunwind)
 - #71937 (Ignore SGX on a few ui tests)
 - #71944 (Add comment for `Ord` implementation for array)

Failed merges:

r? @ghost
Diffstat (limited to 'src/libcore/array')
-rw-r--r--src/libcore/array/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcore/array/mod.rs b/src/libcore/array/mod.rs
index 937451274cf..549228ffffa 100644
--- a/src/libcore/array/mod.rs
+++ b/src/libcore/array/mod.rs
@@ -375,6 +375,7 @@ where
     }
 }
 
+/// Implements comparison of arrays lexicographically.
 #[stable(feature = "rust1", since = "1.0.0")]
 impl<T: Ord, const N: usize> Ord for [T; N]
 where