diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-07-31 16:50:39 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-07-31 16:50:39 +0000 |
commit | 78b89b0ef7f3803cd31df3656f9536bfd6f0dd48 (patch) | |
tree | 461ae4157fa792e826a2c29c55f0b4b22b17b0b3 | |
parent | 6f2c46b58894d5a81ad7ed7654e3768c72aa0d74 (diff) |
Fix 80-col violation
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77683 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/TypeVisitor.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/clang/AST/TypeVisitor.h b/include/clang/AST/TypeVisitor.h index a02e39b3f3..8386bfc620 100644 --- a/include/clang/AST/TypeVisitor.h +++ b/include/clang/AST/TypeVisitor.h @@ -36,7 +36,9 @@ public: // If the implementation chooses not to implement a certain visit method, fall // back on superclass. -#define TYPE(CLASS, PARENT) RetTy Visit##CLASS##Type(CLASS##Type *T) { DISPATCH(PARENT); } +#define TYPE(CLASS, PARENT) RetTy Visit##CLASS##Type(CLASS##Type *T) { \ + DISPATCH(PARENT); \ +} #include "clang/AST/TypeNodes.def" // Base case, ignore it. :) |