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

@ -108,7 +108,7 @@ import std.conv, std.digest.md, std.digest.sha, std.random, std.range, std.strin
public struct UUID
{
private:
@safe nothrow pure char toChar(size_t i) const
@safe pure nothrow char toChar(size_t i) const
{
if(i <= 9)
return cast(char)('0' + i);
@ -116,7 +116,7 @@ public struct UUID
return cast(char)('a' + (i-10));
}
@safe nothrow pure char[36] _toString() const
@safe pure nothrow char[36] _toString() const
{
char[36] result;
@ -625,7 +625,7 @@ public struct UUID
/**
* Swap the data of this UUID with the data of rhs.
*/
@safe nothrow pure void swap(ref UUID rhs)
@safe pure nothrow void swap(ref UUID rhs)
{
auto bck = data;
data = rhs.data;