Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit 64fc5c5

Browse files
committed
chore(format): use empty lines before unittest
1 parent 25559f5 commit 64fc5c5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/object.d

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3661,6 +3661,7 @@ private
36613661
{
36623662
return _d_arraysetcapacity(typeid(T[]), 0, cast(void[]*)&arr);
36633663
}
3664+
36643665
///
36653666
@safe unittest
36663667
{
@@ -3696,6 +3697,7 @@ size_t reserve(T)(ref T[] arr, size_t newcapacity) pure nothrow @trusted
36963697
{
36973698
return _d_arraysetcapacity(typeid(T[]), newcapacity, cast(void[]*)&arr);
36983699
}
3700+
36993701
///
37003702
unittest
37013703
{
@@ -3744,6 +3746,7 @@ auto ref inout(T[]) assumeSafeAppend(T)(auto ref inout(T[]) arr) nothrow @system
37443746
_d_arrayshrinkfit(typeid(T[]), *(cast(void[]*)&arr));
37453747
return arr;
37463748
}
3749+
37473750
///
37483751
unittest
37493752
{

0 commit comments

Comments
 (0)