From: Nico Weber Date: Wed, 15 Apr 2015 21:53:00 +0000 (+0000) Subject: clang-format a line containing nothing but a "{". No behavior change. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=06bfa567220725ba21f44ec0c3599d34e9d59d29;p=clang clang-format a line containing nothing but a "{". No behavior change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@235047 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/Decl.cpp b/lib/AST/Decl.cpp index 349b7b43d1..1cdc24e65f 100644 --- a/lib/AST/Decl.cpp +++ b/lib/AST/Decl.cpp @@ -1877,9 +1877,8 @@ bool VarDecl::isInExternCXXContext() const { VarDecl *VarDecl::getCanonicalDecl() { return getFirstDecl(); } -VarDecl::DefinitionKind VarDecl::isThisDeclarationADefinition( - ASTContext &C) const -{ +VarDecl::DefinitionKind +VarDecl::isThisDeclarationADefinition(ASTContext &C) const { // C++ [basic.def]p2: // A declaration is a definition unless [...] it contains the 'extern' // specifier or a linkage-specification and neither an initializer [...],