Skip to content
This repository has been archived by the owner on Aug 12, 2021. It is now read-only.

Commit

Permalink
Utilize fewer reexports
Browse files Browse the repository at this point in the history
In regards to:

rust-lang/rust#19253 (comment)

This commit:

* Changes the #deriving code so that it generates code that utilizes fewer
  reexports (in particur Option::* and Result::*), which is necessary to
  remove those reexports in the future
* Changes other areas of the codebase so that fewer reexports are utilized
  • Loading branch information
frewsxcv committed Dec 5, 2014
1 parent 15cb560 commit 4e41af1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terminfo/parm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ fn format(val: Param, op: FormatOp, flags: Flags) -> Result<Vec<u8> ,String> {
#[cfg(test)]
mod test {
use super::{expand,Param,Words,Variables,Number};
use std::result::Ok;
use std::result::Result::Ok;

#[test]
fn test_basic_setabf() {
Expand Down

0 comments on commit 4e41af1

Please sign in to comment.