Compare commits
4 Commits
1c57368f43
...
master
Author | SHA1 | Date | |
---|---|---|---|
6072bfab68
|
|||
4acf163b42 | |||
e1fd528607 | |||
20ae6465d6 |
5
dub.json
5
dub.json
@ -13,10 +13,7 @@
|
|||||||
"tanya:meta": "*",
|
"tanya:meta": "*",
|
||||||
"tanya:os": "*",
|
"tanya:os": "*",
|
||||||
"tanya:middle": "*",
|
"tanya:middle": "*",
|
||||||
"tanya:test": "*"
|
"tanya:test": "*",
|
||||||
},
|
|
||||||
|
|
||||||
"dependencies-linux": {
|
|
||||||
"mir-linux-kernel": "~>1.0.0"
|
"mir-linux-kernel": "~>1.0.0"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -2128,7 +2128,7 @@ if (isCallable!F)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
enum getDefault(T[i .. i + 1] name)
|
auto getDefault(T[i .. i + 1] name)
|
||||||
{
|
{
|
||||||
return name[0];
|
return name[0];
|
||||||
}
|
}
|
||||||
|
@ -109,7 +109,7 @@ private struct SingletonByRef(E)
|
|||||||
this.element = &element;
|
this.element = &element;
|
||||||
}
|
}
|
||||||
|
|
||||||
@property ref inout(E) front() inout return
|
@property ref inout(E) front() inout return scope
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
assert(!empty);
|
assert(!empty);
|
||||||
@ -148,7 +148,7 @@ private struct SingletonByRef(E)
|
|||||||
return typeof(this)(*this.element);
|
return typeof(this)(*this.element);
|
||||||
}
|
}
|
||||||
|
|
||||||
ref inout(E) opIndex(size_t i) inout return
|
ref inout(E) opIndex(size_t i) inout return scope
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
assert(!empty);
|
assert(!empty);
|
||||||
|
Reference in New Issue
Block a user