mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 22:50:38 +03:00
Style fix: add whitespace after if/while
This commit is contained in:
parent
99398975d4
commit
df2e72d113
3 changed files with 6 additions and 6 deletions
|
@ -737,13 +737,13 @@ void initializeAll(Range)(Range range)
|
|||
{
|
||||
for ( ; !range.empty ; range.popFront() )
|
||||
{
|
||||
static if(__traits(isStaticArray, T))
|
||||
static if (__traits(isStaticArray, T))
|
||||
{
|
||||
// static array initializer only contains initialization
|
||||
// for one element of the static array.
|
||||
auto elemp = cast(void *)addressOf(range.front);
|
||||
auto endp = elemp + T.sizeof;
|
||||
while(elemp < endp)
|
||||
while (elemp < endp)
|
||||
{
|
||||
memcpy(elemp, p.ptr, p.length);
|
||||
elemp += p.length;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue