r374276 - [ast] Fix indentation. NFC.

Michael Liao via cfe-commits cfe-commits at lists.llvm.org
Wed Oct 9 21:16:53 PDT 2019


Author: hliao
Date: Wed Oct  9 21:16:52 2019
New Revision: 374276

URL: http://llvm.org/viewvc/llvm-project?rev=374276&view=rev
Log:
[ast] Fix indentation. NFC.

Modified:
    cfe/trunk/include/clang/AST/Decl.h

Modified: cfe/trunk/include/clang/AST/Decl.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Decl.h?rev=374276&r1=374275&r2=374276&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Decl.h (original)
+++ cfe/trunk/include/clang/AST/Decl.h Wed Oct  9 21:16:52 2019
@@ -4114,13 +4114,9 @@ public:
   void setCaptures(ASTContext &Context, ArrayRef<Capture> Captures,
                    bool CapturesCXXThis);
 
-   unsigned getBlockManglingNumber() const {
-     return ManglingNumber;
-   }
+  unsigned getBlockManglingNumber() const { return ManglingNumber; }
 
-   Decl *getBlockManglingContextDecl() const {
-     return ManglingContextDecl;
-   }
+  Decl *getBlockManglingContextDecl() const { return ManglingContextDecl; }
 
   void setBlockMangling(unsigned Number, Decl *Ctx) {
     ManglingNumber = Number;




More information about the cfe-commits mailing list