Skip to content

Commit 33ce180

Browse files
committed
no default filename for ZFile()
1 parent bb5e12e commit 33ce180

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

misc/bio.d

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public:
3333
_fp = null;
3434
}
3535
}
36-
this(string fn = "-", int buf_size = 16384) { this.open(fn, buf_size); }
36+
this(string fn, int buf_size = 16384) { this.open(fn, buf_size); }
3737
this() { eof = true; _fp = null; }
3838
~this() { this.close(); }
3939
int readto(ref ubyte[] dat, ubyte delimiter = '\n', bool append = false) {

0 commit comments

Comments
 (0)