[cfe-commits] r77683 - /cfe/trunk/include/clang/AST/TypeVisitor.h
Douglas Gregor
dgregor at apple.com
Fri Jul 31 09:50:40 PDT 2009
Author: dgregor
Date: Fri Jul 31 11:50:39 2009
New Revision: 77683
URL: http://llvm.org/viewvc/llvm-project?rev=77683&view=rev
Log:
Fix 80-col violation
Modified:
cfe/trunk/include/clang/AST/TypeVisitor.h
Modified: cfe/trunk/include/clang/AST/TypeVisitor.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/TypeVisitor.h?rev=77683&r1=77682&r2=77683&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/TypeVisitor.h (original)
+++ cfe/trunk/include/clang/AST/TypeVisitor.h Fri Jul 31 11:50:39 2009
@@ -36,7 +36,9 @@
// 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. :)
More information about the cfe-commits
mailing list