Skip to content

Commit 43ca58d

Browse files
authored
Merge pull request #4795 from klickverbot/not-unsafer-uni
std.uni: Don't hard-code @safe on template accepting output range
2 parents d691d6a + dc2a67c commit 43ca58d

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)