File tree Expand file tree Collapse file tree 4 files changed +3
-5
lines changed Expand file tree Collapse file tree 4 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
5
5
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
- refs/heads/try2: 5b75e44fb01f0eda10ce8d8df92b80945d894768
8
+ refs/heads/try2: dca8a0d6e4d1848ead898b3fa5b1e6c940c85b87
9
9
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
10
10
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
11
11
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change 24
24
/* Core modules for ownership management */
25
25
26
26
pub mod intrinsics;
27
+ pub mod mem;
Original file line number Diff line number Diff line change 13
13
//! This module contains functions for querying the size and alignment of
14
14
//! types, initializing and manipulating memory.
15
15
16
- #![ allow( missing_doc) ] // FIXME
17
-
18
16
use cast;
19
17
use ptr;
20
18
use intrinsics;
Original file line number Diff line number Diff line change @@ -134,6 +134,7 @@ extern crate core;
134
134
#[ cfg( test) ] pub use owned = realstd:: owned;
135
135
136
136
pub use core:: intrinsics;
137
+ pub use core:: mem;
137
138
138
139
// Run tests with libgreen instead of libnative.
139
140
//
@@ -243,8 +244,6 @@ pub mod path;
243
244
pub mod cast;
244
245
pub mod fmt;
245
246
pub mod cleanup;
246
- pub mod mem;
247
-
248
247
249
248
/* Unsupported interfaces */
250
249
You can’t perform that action at this time.
0 commit comments