Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
97beb07
BTreeMap: derive type-specific variants of node_as_mut and cast_unche…
ssomers Oct 3, 2020
e55d27f
Remove unnecessary rustc_const_stable attributes.
m-ou-se Oct 8, 2020
23c3356
Mention rustdoc in `x.py setup`
jyn514 Oct 10, 2020
d7029cb
`min_const_generics` diagnostics improvements
eopb Oct 11, 2020
eec4436
Make error help clearer
eopb Oct 12, 2020
d909d69
Upgrade OpenSSL to 1.1.1h and add support for aarch64-apple-darwin
shepmaster Oct 12, 2020
5ae5b0e
Enable building Cargo for aarch64-apple-darwin
shepmaster Sep 26, 2020
eb0c996
Configure jemalloc for cross-compilation to aarch64-apple-darwin
shepmaster Sep 27, 2020
e62da8f
Remove a little jargon from error
eopb Oct 12, 2020
facb38d
A little rewording
eopb Oct 12, 2020
c16c8ac
Include `llvm-dis`, `llc` and `opt` in `llvm-tools-preview` component
Aaron1011 Oct 12, 2020
79351b1
Bless expected errors
eopb Oct 12, 2020
61e722f
Use Option::unwrap_or instead of open-coding it
LingMan Oct 12, 2020
45a34fc
Include aarch64-apple-darwin in the dist manifests
shepmaster Oct 13, 2020
a0fc455
Replace absolute paths with relative ones
est31 Oct 13, 2020
b7080e6
Give an error when running `x.py test --stage 0 src/test/ui`
jyn514 Oct 10, 2020
8b6e346
aarch64-apple-darwin now includes Cargo
shepmaster Oct 13, 2020
ccd3914
Rollup merge of #77239 - shepmaster:silicon-ci-plus, r=pietroalbini
JohnTitor Oct 13, 2020
205e23b
Rollup merge of #77569 - ssomers:btree_cleanup_1, r=Mark-Simulacrum
JohnTitor Oct 13, 2020
96693cb
Rollup merge of #77719 - fusion-engineering-forks:const-new-mutex-att…
JohnTitor Oct 13, 2020
bd9aac3
Rollup merge of #77776 - jyn514:wrong-way, r=Mark-Simulacrum
JohnTitor Oct 13, 2020
f6d9e32
Rollup merge of #77786 - jyn514:rustdoc, r=Mark-Simulacrum
JohnTitor Oct 13, 2020
0a83cb9
Rollup merge of #77825 - ethanboxx:min_const_generics_diagnostic, r=lcnr
JohnTitor Oct 13, 2020
f7c9a7e
Rollup merge of #77868 - Aaron1011:llvm-tools-opt-llc, r=Mark-Simulacrum
JohnTitor Oct 13, 2020
c1e2619
Rollup merge of #77884 - LingMan:ast_pretty_unwrap_or, r=varkor
JohnTitor Oct 13, 2020
c021c49
Rollup merge of #77892 - est31:remove_redundant_absolute_paths, r=lcnr
JohnTitor Oct 13, 2020
7664cbf
Rollup merge of #77895 - shepmaster:silicon-manifest, r=pietroalbini
JohnTitor Oct 13, 2020
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
Remove unnecessary rustc_const_stable attributes.
  • Loading branch information
m-ou-se committed Oct 8, 2020
commit e55d27fbcefffbddb85f28cf4eb913674f2188c6
1 change: 0 additions & 1 deletion library/std/src/sys/unsupported/mutex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ unsafe impl Send for Mutex {}
unsafe impl Sync for Mutex {} // no threads on this platform

impl Mutex {
#[rustc_const_stable(feature = "const_sys_mutex_new", since = "1.0.0")]
pub const fn new() -> Mutex {
Mutex { locked: UnsafeCell::new(false) }
}
Expand Down
1 change: 0 additions & 1 deletion library/std/src/sys_common/mutex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ impl StaticMutex {
/// first used with any of the functions below.
/// Also, the behavior is undefined if this mutex is ever used reentrantly,
/// i.e., `lock` is called by the thread currently holding the lock.
#[rustc_const_stable(feature = "const_sys_mutex_new", since = "1.0.0")]
pub const fn new() -> Self {
Self(imp::Mutex::new())
}
Expand Down