Skip to content

Commit 95030e0

Browse files
authored
Properly mark lines constructor
1 parent 9ffe71f commit 95030e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

std/stdio.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4607,7 +4607,7 @@ struct lines
46074607
f = File to read lines from.
46084608
terminator = Line separator (`'\n'` by default).
46094609
*/
4610-
this(File f, dchar terminator = '\n')
4610+
this(File f, dchar terminator = '\n') @safe nothrow @nogc pure
46114611
{
46124612
this.f = f;
46134613
this.terminator = terminator;

0 commit comments

Comments
 (0)