]> granicus.if.org Git - clang/commitdiff
fix some 80 col violations.
authorChris Lattner <sabre@nondot.org>
Thu, 5 Mar 2009 00:56:34 +0000 (00:56 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 5 Mar 2009 00:56:34 +0000 (00:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66114 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Parse/Action.h

index c5a16288e331f29a33d91cbe138aed22a10d40db..1fe58da68c4bfdd25ab6d4b4d0c19322ebb3c230 100644 (file)
@@ -42,10 +42,10 @@ namespace clang {
   // 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