Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
5465748
Permit pre-evaluated constants in simd_shuffle
oli-obk Jul 10, 2023
5710fca
update ancient note
tshepang Jul 12, 2023
5842a3f
add support of available_parallelism for target hermit
stlankes Jul 3, 2023
50c7344
define hermit_abi as public depedenceny
stlankes Jul 3, 2023
e1777f9
fix usage of Timespec om the target hermit
stlankes Jul 3, 2023
8666ade
use latest version of hermit-abi
stlankes Jul 4, 2023
518648d
Structurally normalize in selection
compiler-errors Jul 7, 2023
df3f45d
avoid ambiguous word
tshepang Jul 12, 2023
0b5c683
Add machine-applicable suggestion for `unused_qualifications` lint
jieyouxu Jun 17, 2023
ff25ebc
add str, slice, and array to smir types
ericmarkmartin Jul 12, 2023
a167e66
move const definition
ericmarkmartin Jul 13, 2023
9d071b3
Make `nodejs` control the default for RustdocJs tests instead of a ha…
jyn514 Jul 13, 2023
835984c
Rollup merge of #112525 - hermitcore:devel, r=m-ou-se
matthiaskrgr Jul 13, 2023
3f539cd
Rollup merge of #112729 - jieyouxu:unused-qualifications-suggestion, …
matthiaskrgr Jul 13, 2023
83fb198
Rollup merge of #113529 - oli-obk:simd_shuffle_evaluated, r=wesleywiser
matthiaskrgr Jul 13, 2023
c9ef99b
Rollup merge of #113618 - tshepang:patch-1, r=jyn514
matthiaskrgr Jul 13, 2023
2a8ec6e
Rollup merge of #113625 - compiler-errors:structurally-norm-in-select…
matthiaskrgr Jul 13, 2023
a8ad867
Rollup merge of #113639 - ericmarkmartin:more-smir-types, r=oli-obk
matthiaskrgr Jul 13, 2023
6801648
Rollup merge of #113640 - jyn514:nodejs-defaults, r=GuillaumeGomez
matthiaskrgr Jul 13, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update ancient note
  • Loading branch information
tshepang authored Jul 12, 2023
commit 5710fca279d989676bae903299cce134552747f5
4 changes: 2 additions & 2 deletions library/std/src/collections/hash/set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ use super::map::{map_try_reserve_error, RandomState};
/// ```
///
/// The easiest way to use `HashSet` with a custom type is to derive
/// [`Eq`] and [`Hash`]. We must also derive [`PartialEq`], this will in the
/// future be implied by [`Eq`].
/// [`Eq`] and [`Hash`]. We must also derive [`PartialEq`],
/// which is implied by [`Eq`].
///
/// ```
/// use std::collections::HashSet;
Expand Down