From c752f5bce4cc524c9b808272ed9c7da67db61938 Mon Sep 17 00:00:00 2001 From: Michael Liao Date: Thu, 10 Oct 2019 04:16:52 +0000 Subject: [PATCH] [ast] Fix indentation. NFC. llvm-svn: 374276 --- clang/include/clang/AST/Decl.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/clang/include/clang/AST/Decl.h b/clang/include/clang/AST/Decl.h index cbac50daf14c..ce674e09c44d 100644 --- a/clang/include/clang/AST/Decl.h +++ b/clang/include/clang/AST/Decl.h @@ -4114,13 +4114,9 @@ public: void setCaptures(ASTContext &Context, ArrayRef 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;