diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-11-28 14:08:19 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-11-28 14:49:58 -0800 |
| commit | 16f72df7041602dd286c1c00b2b745d21bf10e9b (patch) | |
| tree | 9227bb7e7db96be0d1dd6cd77d79f8a00e61ce06 /src/libstd/std.rc | |
| parent | 42c2c2ab2f4dfa350dd01d33025cd5027a358d33 (diff) | |
| parent | 32763caa600857bc0116a9221e4a94431b5b6907 (diff) | |
| download | rust-16f72df7041602dd286c1c00b2b745d21bf10e9b.tar.gz rust-16f72df7041602dd286c1c00b2b745d21bf10e9b.zip | |
Merge remote-tracking branch 'erickt/time'
Conflicts: src/libstd/time.rs
Diffstat (limited to 'src/libstd/std.rc')
| -rw-r--r-- | src/libstd/std.rc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libstd/std.rc b/src/libstd/std.rc index a56b1ac61a0..a22bbe1cd6f 100644 --- a/src/libstd/std.rc +++ b/src/libstd/std.rc @@ -96,6 +96,14 @@ mod unicode; pub mod test; pub mod serialization; +// A curious inner-module that's not exported that contains the binding +// 'std' so that macro-expanded references to std::serialization and such +// can be resolved within libcore. +#[doc(hidden)] // FIXME #3538 +mod std { + pub use serialization; +} + // Local Variables: // mode: rust; // fill-column: 78; |
