]> granicus.if.org Git - clang/commitdiff
80 col violation fix.
authorTed Kremenek <kremenek@apple.com>
Mon, 12 May 2008 17:40:13 +0000 (17:40 +0000)
committerTed Kremenek <kremenek@apple.com>
Mon, 12 May 2008 17:40:13 +0000 (17:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50977 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/Decl.h

index ea9ab0cc0daccfd888fff1c5943d61d5546fd6de..191baabe27f32917b36d4e715d5d437af21a7080 100644 (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,