Skip to content

Commit bac6273

Browse files
committed
Fix feature warnings on unix
1 parent 4785d40 commit bac6273

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@
2424
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
2525
html_root_url = "http://doc.rust-lang.org/glob/")]
2626
#![cfg_attr(test, deny(warnings))]
27-
#![cfg_attr(test, feature(env))]
28-
#![cfg_attr(all(test, windows), feature(old_path))]
27+
#![cfg_attr(test, feature(env, old_path))]
2928
#![feature(path, io, core, collections, unicode, fs, path, os)]
3029

3130
use std::ascii::AsciiExt;

0 commit comments

Comments
 (0)