From b6fcb1e475ea0d1395915c1d56a195128f654837 Mon Sep 17 00:00:00 2001 From: Yaron Keren Date: Thu, 19 Jun 2014 19:12:02 +0000 Subject: [PATCH] Fixed formatting. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211295 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Lex/PPDirectives.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/Lex/PPDirectives.cpp b/lib/Lex/PPDirectives.cpp index a0ec2bf78c..35c2aaf69d 100644 --- a/lib/Lex/PPDirectives.cpp +++ b/lib/Lex/PPDirectives.cpp @@ -101,14 +101,13 @@ Preprocessor::AllocateVisibilityMacroDirective(SourceLocation Loc, /// \brief Release the specified MacroInfo to be reused for allocating /// new MacroInfo objects. void Preprocessor::ReleaseMacroInfo(MacroInfo *MI) { - MacroInfoChain *MIChain = (MacroInfoChain*) MI; + MacroInfoChain *MIChain = (MacroInfoChain *)MI; if (MacroInfoChain *Prev = MIChain->Prev) { MacroInfoChain *Next = MIChain->Next; Prev->Next = Next; if (Next) Next->Prev = Prev; - } - else { + } else { assert(MIChainHead == MIChain); MIChainHead = MIChain->Next; MIChainHead->Prev = nullptr; -- 2.40.0