[cfe-commits] r50977 - /cfe/trunk/include/clang/AST/Decl.h
Ted Kremenek
kremenek at apple.com
Mon May 12 10:40:14 PDT 2008
Author: kremenek
Date: Mon May 12 12:40:13 2008
New Revision: 50977
URL: http://llvm.org/viewvc/llvm-project?rev=50977&view=rev
Log:
80 col violation fix.
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=50977&r1=50976&r2=50977&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Decl.h (original)
+++ cfe/trunk/include/clang/AST/Decl.h Mon May 12 12:40:13 2008
@@ -226,8 +226,8 @@
friend class StmtIteratorBase;
protected:
- VarDecl(Kind DK, DeclContext *DC, SourceLocation L, IdentifierInfo *Id, QualType T,
- StorageClass SC, ScopedDecl *PrevDecl)
+ VarDecl(Kind DK, DeclContext *DC, SourceLocation L, IdentifierInfo *Id,
+ QualType T, StorageClass SC, ScopedDecl *PrevDecl)
: ValueDecl(DK, DC, L, Id, T, PrevDecl), Init(0) { SClass = SC; }
public:
static VarDecl *Create(ASTContext &C, DeclContext *DC,
More information about the cfe-commits
mailing list