aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-03-05 00:56:34 +0000
committerChris Lattner <sabre@nondot.org>2009-03-05 00:56:34 +0000
commit7833ed2a6eb10750572fb7b7dbb16741fe1b00ec (patch)
treefc34b960ae3504014491f52c717391876a9f4f92
parent40e9bc84a2ab49fc33c2b1a95c6674ab2b820e9e (diff)
fix some 80 col violations.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66114 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Parse/Action.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h
index c5a16288e3..1fe58da68c 100644
--- a/include/clang/Parse/Action.h
+++ b/include/clang/Parse/Action.h
@@ -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