summaryrefslogtreecommitdiffstats
path: root/clang
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-07-31 16:50:39 +0000
committerDouglas Gregor <dgregor@apple.com>2009-07-31 16:50:39 +0000
commit4571a4a76050acf5cd59c9cb47e7ee40d7224586 (patch)
tree1f138b6b81d5d82613bdb8871294a983005a1b1e /clang
parentf0b4bf55f002492ea32a2668556f8c60cc13c4d4 (diff)
downloadbcm5719-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.h4
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. :)
OpenPOWER on IntegriCloud