]> granicus.if.org Git - clang/commitdiff
Fix 80-col violation
authorDouglas Gregor <dgregor@apple.com>
Fri, 31 Jul 2009 16:50:39 +0000 (16:50 +0000)
committerDouglas Gregor <dgregor@apple.com>
Fri, 31 Jul 2009 16:50:39 +0000 (16:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77683 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/TypeVisitor.h

index a02e39b3f34e553ef75bf38523b8afd3a1f5f4da..8386bfc620c9b04184e335fb813e2535e7b2c6e1 100644 (file)
@@ -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. :)