]> granicus.if.org Git - clang/commitdiff
Fixed formatting.
authorYaron Keren <yaron.keren@gmail.com>
Thu, 19 Jun 2014 19:12:02 +0000 (19:12 +0000)
committerYaron Keren <yaron.keren@gmail.com>
Thu, 19 Jun 2014 19:12:02 +0000 (19:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211295 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Lex/PPDirectives.cpp

index a0ec2bf78c5f3b37c3a8cdd48c76faf59b9d07ef..35c2aaf69d32f67e6f534cd4e45bc41a1b705380 100644 (file)
@@ -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;