mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 14:40:30 +03:00
Sed "@safe pure nothrow"
This commit is contained in:
parent
24fffa6ecc
commit
d609bd332f
11 changed files with 28 additions and 28 deletions
|
@ -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];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue