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 | 4571a4a76050acf5cd59c9cb47e7ee40d7224586 (patch) | |
| tree | 1f138b6b81d5d82613bdb8871294a983005a1b1e /clang | |
| parent | f0b4bf55f002492ea32a2668556f8c60cc13c4d4 (diff) | |
| download | bcm5719-llvm-4571a4a76050acf5cd59c9cb47e7ee40d7224586.tar.gz bcm5719-llvm-4571a4a76050acf5cd59c9cb47e7ee40d7224586.zip | |
Fix 80-col violation
llvm-svn: 77683
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/include/clang/AST/TypeVisitor.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/include/clang/AST/TypeVisitor.h b/clang/include/clang/AST/TypeVisitor.h index a02e39b3f34..8386bfc620c 100644 --- a/clang/include/clang/AST/TypeVisitor.h +++ b/clang/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. :) |

