Skip to content

Commit 6d328ed

Browse files
huonwalexcrichton
authored andcommitted
---
yaml --- r: 226111 b: refs/heads/stable c: 22946db h: refs/heads/master i: 226109: 38d54e1 226107: 441f845 226103: 02ec00b 226095: c68410e 226079: 0d8642f 226047: c2aca5a v: v3
1 parent 8d74dd2 commit 6d328ed

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ refs/heads/tmp: e5d90d98402475b6e154ce216f9efcb80da1a747
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3030
refs/tags/homu-tmp: 1fe32ca12c51afcd761d9962f51a74ff0d07a591
3131
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
32-
refs/heads/stable: 8d26dedecb16cc97a1d9897ce7afc99de63e7815
32+
refs/heads/stable: 22946db133ae4713224bf9d655d31a2bcae94989
3333
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
3434
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b

branches/stable/src/libcore/mem.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ pub fn size_of_val<T: ?Sized>(val: &T) -> usize {
155155
/// ```
156156
#[inline]
157157
#[stable(feature = "rust1", since = "1.0.0")]
158-
#[deprecated(reason = "use `align_of` instead", since = "1.1.0")]
158+
#[deprecated(reason = "use `align_of` instead", since = "1.2.0")]
159159
pub fn min_align_of<T>() -> usize {
160160
unsafe { intrinsics::min_align_of::<T>() }
161161
}
@@ -171,7 +171,7 @@ pub fn min_align_of<T>() -> usize {
171171
/// ```
172172
#[inline]
173173
#[stable(feature = "rust1", since = "1.0.0")]
174-
#[deprecated(reason = "use `align_of_val` instead", since = "1.1.0")]
174+
#[deprecated(reason = "use `align_of_val` instead", since = "1.2.0")]
175175
pub fn min_align_of_val<T: ?Sized>(val: &T) -> usize {
176176
unsafe { intrinsics::min_align_of_val(val) }
177177
}

0 commit comments

Comments
 (0)