[clang-format] apply v14 changes (#8490)

This commit is contained in:
Jonathan Hui
2022-12-07 16:23:20 -08:00
parent 351298e85f
commit 9c467a23ae
373 changed files with 4176 additions and 2841 deletions
+2 -2
View File
@@ -82,7 +82,7 @@ void TestAllocateRandomly(size_t aSizeLimit, unsigned int aSeed)
{
struct Node
{
Node * mNext;
Node *mNext;
size_t mSize;
};
@@ -93,7 +93,7 @@ void TestAllocateRandomly(size_t aSizeLimit, unsigned int aSeed)
srand(aSeed);
const size_t totalSize = heap.GetFreeSize();
Node * last = &head;
Node *last = &head;
do
{