Prune CRLF.
[oota-llvm.git] / include / llvm / ADT / SmallBitVector.h
index 18c68fdd4d242427331a635b580e17b1f762cf26..ababf0f3cbe3e58626ab061835cc54c63894d077 100644 (file)
@@ -54,7 +54,7 @@ class SmallBitVector {
   };
 
 public:
-  typedef size_t size_type;\r
+  typedef unsigned size_type;
   // Encapsulation of a single bit.
   class reference {
     SmallBitVector &TheVector;
@@ -169,7 +169,7 @@ public:
   }
 
   /// size - Returns the number of bits in this bitvector.
-  size_type size() const {
+  size_t size() const {
     return isSmall() ? getSmallSize() : getPointer()->size();
   }