[cfe-commits] r66114 - /cfe/trunk/include/clang/Parse/Action.h
Chris Lattner
sabre at nondot.org
Wed Mar 4 16:56:34 PST 2009
Author: lattner
Date: Wed Mar 4 18:56:34 2009
New Revision: 66114
URL: http://llvm.org/viewvc/llvm-project?rev=66114&view=rev
Log:
fix some 80 col violations.
Modified:
cfe/trunk/include/clang/Parse/Action.h
Modified: cfe/trunk/include/clang/Parse/Action.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Parse/Action.h?rev=66114&r1=66113&r2=66114&view=diff
==============================================================================
--- cfe/trunk/include/clang/Parse/Action.h (original)
+++ cfe/trunk/include/clang/Parse/Action.h Wed Mar 4 18:56:34 2009
@@ -42,10 +42,10 @@
// We can re-use the low bit of expression, statement, base, and
// member-initializer pointers for the "invalid" flag of
// ActionResult.
- template<> struct IsResultPtrLowBitFree<0> { static const bool value = true; };
- template<> struct IsResultPtrLowBitFree<1> { static const bool value = true; };
- template<> struct IsResultPtrLowBitFree<3> { static const bool value = true; };
- template<> struct IsResultPtrLowBitFree<4> { static const bool value = true; };
+ template<> struct IsResultPtrLowBitFree<0> { static const bool value = true;};
+ template<> struct IsResultPtrLowBitFree<1> { static const bool value = true;};
+ template<> struct IsResultPtrLowBitFree<3> { static const bool value = true;};
+ template<> struct IsResultPtrLowBitFree<4> { static const bool value = true;};
/// Action - As the parser reads the input file and recognizes the productions
/// of the grammar, it invokes methods on this class to turn the parsed input
More information about the cfe-commits
mailing list