Replace body keyword with its replacement: do

Automatic replacement with

    sed -i "s/^\([ ]*\)body/\1do/" -i **/*.d
This commit is contained in:
Sebastian Wilzbach 2017-11-20 13:25:16 +01:00
parent 5c77d8595c
commit df6365092a
38 changed files with 183 additions and 183 deletions

View file

@ -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;
}