fix some 80 col violations.

llvm-svn: 66114
This commit is contained in:
Chris Lattner 2009-03-05 00:56:34 +00:00
parent 12f2ea5015
commit f5d8ba86cc
1 changed files with 4 additions and 4 deletions

View 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