80 col violation fix.

llvm-svn: 50977
This commit is contained in:
Ted Kremenek 2008-05-12 17:40:13 +00:00
parent 92f78f4c04
commit babaa52efb
1 changed files with 2 additions and 2 deletions

View File

@ -226,8 +226,8 @@ private:
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,