Skip to content

Commit dc2a67c

Browse files
committed
std.uni: Don't hard-code @safe on template accepting output range
Fixup for GitHub #4792.
1 parent 2ccfbcc commit dc2a67c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

std/uni.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,7 @@ struct MultiArray(Types...)
895895
return (storage.ptr+storage.length - raw_ptr!n)*size_t.sizeof;
896896
}
897897

898-
void store(OutRange)(scope OutRange sink) const @safe
898+
void store(OutRange)(scope OutRange sink) const
899899
if (isOutputRange!(OutRange, char))
900900
{
901901
import std.format : formattedWrite;

0 commit comments

Comments
 (0)