diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-05-12 17:40:13 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-05-12 17:40:13 +0000 |
commit | 901b412d65d40ed8df16701e89bf5dd5b145cbd0 (patch) | |
tree | 0448e3350a9009c322fc3ab39f64d480be499e83 /include/clang/AST/Decl.h | |
parent | 9f3e89ad02cc155c8f7902c81fa5a9cd6fce2b53 (diff) |
80 col violation fix.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50977 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/AST/Decl.h')
-rw-r--r-- | include/clang/AST/Decl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/AST/Decl.h b/include/clang/AST/Decl.h index ea9ab0cc0d..191baabe27 100644 --- a/include/clang/AST/Decl.h +++ b/include/clang/AST/Decl.h @@ -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, |