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

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
73ed6cf
Implement From<RecvError> for TryRecvError and RecvTimeoutError
ia0 Oct 23, 2017
448215d
Implement From<SendError<T>> for TrySendError<T>
ia0 Oct 30, 2017
6ceb5f4
Stabilize spin_loop_hint
Nov 21, 2017
a115fcd
Remove spin-loop-hint from the unstable book
Nov 22, 2017
5962d7e
Expand docs of <$Int>::from_str_radix, based on that of char::to_digit
SimonSapin Nov 24, 2017
fa6ae4c
Suggest using slice when encountering `let x = ""[..];`
estebank Nov 24, 2017
cde0023
Add `compile-fail` style comments to tests
estebank Nov 25, 2017
aabacf7
Remove semicolon note
colinmarsh19 Nov 25, 2017
ba40f5c
Test for issue #46186
colinmarsh19 Nov 25, 2017
306f4da
Fixed Err by passing "err"
colinmarsh19 Nov 25, 2017
97d8d04
Remove index type check (review comment)
estebank Nov 25, 2017
8e60f72
Added ;
colinmarsh19 Nov 25, 2017
de41d84
Introduce LinkedList::remove_if
udoprog Nov 25, 2017
60aa834
Implement LinkedList::drain_filter
udoprog Nov 25, 2017
3e8883e
Changed from note to span_suggestion_short
colinmarsh19 Nov 26, 2017
4779899
UI test 46186
colinmarsh19 Nov 26, 2017
bbe4c85
Added 46186 stderr
colinmarsh19 Nov 26, 2017
50537e3
Delete bad test file
colinmarsh19 Nov 26, 2017
5d8d04a
Compiletest libc dependency can be unix-only
dtolnay Nov 26, 2017
1be38e0
MIR: Fix value moved diagnose messages
ritiek Nov 23, 2017
f6b80d4
Added .rs extension
colinmarsh19 Nov 26, 2017
096e698
Changed to correct quotes ` `
colinmarsh19 Nov 26, 2017
aabb604
Move "auto trait leak" impl-trait cycle dependency test to ui
estebank Nov 26, 2017
0b2d21e
Make impl-trait ciclical reference error point to def_span
estebank Nov 26, 2017
a326d8d
Document non-obvious behavior of fmt::UpperHex & co for negative inte…
SimonSapin Nov 26, 2017
8a93dec
Make main span in impl-trait ciclic reference point to def_span
estebank Nov 26, 2017
487daab
Fix test
estebank Nov 27, 2017
fa44927
reword to "consider borrowing here: `{suggestion}`"
estebank Nov 26, 2017
d5e8b61
Change the stabilization version to 1.24.0
Nov 27, 2017
2f012e4
Rollup merge of #45506 - ia0:mpsc_recv_error_from, r=alexcrichton
kennytm Nov 27, 2017
aa99bd9
Rollup merge of #46174 - stjepang:stabilize-spinloophint, r=sfackler
kennytm Nov 27, 2017
26330b1
Rollup merge of #46231 - ritiek:verbs, r=arielb1
kennytm Nov 27, 2017
840e6c1
Rollup merge of #46240 - SimonSapin:from_str_radix-docs, r=estebank
kennytm Nov 27, 2017
a60ffa0
Rollup merge of #46249 - estebank:suggest-slice, r=arielb1
kennytm Nov 27, 2017
f33edd2
Rollup merge of #46258 - colinmarsh19:master, r=estebank
kennytm Nov 27, 2017
7707b18
Rollup merge of #46262 - udoprog:linked-list-remove-if, r=dtolnay
kennytm Nov 27, 2017
81ba352
Rollup merge of #46275 - dtolnay:compiletest-libc, r=Mark-Simulacrum
kennytm Nov 27, 2017
8dd10e6
Rollup merge of #46282 - estebank:impl-trait-cicle-span, r=arielb1
kennytm Nov 27, 2017
83a6f38
Rollup merge of #46285 - SimonSapin:twos-complement, r=GuillaumeGomez
kennytm Nov 27, 2017
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
Change the stabilization version to 1.24.0
  • Loading branch information
Stjepan Glavina committed Nov 27, 2017
commit d5e8b61054018799c09d0e4c7166a6c4f198cbc5
2 changes: 1 addition & 1 deletion src/libcore/sync/atomic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ use fmt;
///
/// On some platforms this function may not do anything at all.
#[inline]
#[stable(feature = "spin_loop_hint", since = "1.23.0")]
#[stable(feature = "spin_loop_hint", since = "1.24.0")]
pub fn spin_loop_hint() {
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
unsafe {
Expand Down