Sed "@safe pure nothrow"

This commit is contained in:
monarchdodra 2014-05-06 08:21:13 +02:00
parent 24fffa6ecc
commit d609bd332f
11 changed files with 28 additions and 28 deletions

View file

@ -3255,12 +3255,12 @@ if (isSomeChar!C)
getFirst();
}
@property bool empty() const pure nothrow @safe
@property bool empty() const @safe pure nothrow
{
return _s.empty;
}
@property inout(Result) save() inout pure nothrow @safe
@property inout(Result) save() inout @safe pure nothrow
{
return this;
}
@ -4418,7 +4418,7 @@ unittest
{
import std.exception : assertCTFEable;
void dg() pure @safe nothrow
void dg() @safe pure nothrow
{
byte[] sarr = [1, 2, 3, 4];
ubyte[] uarr = [1, 2, 3, 4];