mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 05:30:33 +03:00
Replace body
keyword with its replacement: do
Automatic replacement with sed -i "s/^\([ ]*\)body/\1do/" -i **/*.d
This commit is contained in:
parent
5c77d8595c
commit
df6365092a
38 changed files with 183 additions and 183 deletions
|
@ -185,7 +185,7 @@ struct RBNode(V)
|
|||
{
|
||||
assert(_left !is null);
|
||||
}
|
||||
body
|
||||
do
|
||||
{
|
||||
// sets _left._parent also
|
||||
if (isLeftNode)
|
||||
|
@ -228,7 +228,7 @@ struct RBNode(V)
|
|||
{
|
||||
assert(_right !is null);
|
||||
}
|
||||
body
|
||||
do
|
||||
{
|
||||
// sets _right._parent also
|
||||
if (isLeftNode)
|
||||
|
@ -257,7 +257,7 @@ struct RBNode(V)
|
|||
{
|
||||
assert(_parent !is null);
|
||||
}
|
||||
body
|
||||
do
|
||||
{
|
||||
return _parent._left is &this;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue