Skip to content

Commit 0e620ac

Browse files
committed
Remove one last default argument mode from core::os
1 parent d2e2d97 commit 0e620ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/os.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ fn homedir() -> option<Path> {
484484
fn tmpdir() -> Path {
485485
return lookup();
486486

487-
fn getenv_nonempty(v: Path) -> option<Path> {
487+
fn getenv_nonempty(+v: Path) -> option<Path> {
488488
match getenv(v) {
489489
some(x) =>
490490
if str::is_empty(x) {

0 commit comments

Comments
 (0)