Skip to content

Commit

Permalink
Restyled by clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits committed May 16, 2022
1 parent 5436230 commit fd3ff5b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/credentials/FabricTable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ FabricTable::~FabricTable()
while (delegate)
{
FabricTable::Delegate * temp = delegate->next;
delegate = temp;
delegate = temp;
}
mDelegateListRoot = nullptr;
}
Expand Down Expand Up @@ -809,8 +809,8 @@ void FabricTable::RemoveFabricDelegate(FabricTable::Delegate * delegateToRemove)
if (currentNode->next == delegateToRemove)
{
FabricTable::Delegate * temp = delegateToRemove->next;
currentNode->next = temp;
delegateToRemove->next = nullptr;
currentNode->next = temp;
delegateToRemove->next = nullptr;
return;
}

Expand Down

0 comments on commit fd3ff5b

Please sign in to comment.