diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2013-04-26 12:24:15 -0400 | 
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2013-04-27 21:34:24 -0400 | 
| commit | f792baba42b79711b64950c46208a1eb4b9539be (patch) | |
| tree | 246190c51857def54922ac4888e990d2e53164ca /src/librustdoc/unindent_pass.rs | |
| parent | dd5b1de1812f308ad68472d2ab06c15d3c342d75 (diff) | |
| download | rust-f792baba42b79711b64950c46208a1eb4b9539be.tar.gz rust-f792baba42b79711b64950c46208a1eb4b9539be.zip | |
only use #[no_core] in libcore
Diffstat (limited to 'src/librustdoc/unindent_pass.rs')
| -rw-r--r-- | src/librustdoc/unindent_pass.rs | 6 | 
1 files changed, 0 insertions, 6 deletions
| diff --git a/src/librustdoc/unindent_pass.rs b/src/librustdoc/unindent_pass.rs index 19877fea1fd..082c4dd1989 100644 --- a/src/librustdoc/unindent_pass.rs +++ b/src/librustdoc/unindent_pass.rs @@ -19,15 +19,9 @@ instances where the string containing the doc comment is opened in the middle of a line, and each of the following lines is indented. */ -use core::prelude::*; - use pass::Pass; use text_pass; -use core::str; -use core::uint; -use core::vec; - pub fn mk_pass() -> Pass { text_pass::mk_pass(~"unindent", unindent) } | 
