Reformat linebreaks.
[oota-llvm.git] / include / llvm / ADT / APSInt.h
index a187515f859291dbf1fc9c533f027971b99790c6..83f821b8f15022b22f3cab86eed9cc7d58dcdba1 100644 (file)
@@ -21,6 +21,7 @@ namespace llvm {
 
 class APSInt : public APInt {
   bool IsUnsigned;
+
 public:
   /// Default constructor that creates an uninitialized APInt.
   explicit APSInt() : IsUnsigned(false) {}
@@ -246,7 +247,6 @@ public:
     return this->operator|(RHS);
   }
 
-
   APSInt operator^(const APSInt& RHS) const {
     assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
     return APSInt(static_cast<const APInt&>(*this) ^ RHS, IsUnsigned);