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

Commit 4e41af1

Browse files
committed
Utilize fewer reexports
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
1 parent 15cb560 commit 4e41af1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

terminfo/parm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ fn format(val: Param, op: FormatOp, flags: Flags) -> Result<Vec<u8> ,String> {
576576
#[cfg(test)]
577577
mod test {
578578
use super::{expand,Param,Words,Variables,Number};
579-
use std::result::Ok;
579+
use std::result::Result::Ok;
580580

581581
#[test]
582582
fn test_basic_setabf() {

0 commit comments

Comments
 (0)