Whitespace
authorRui Ueyama <ruiu@google.com>
Tue, 22 Apr 2014 19:52:05 +0000 (19:52 +0000)
committerRui Ueyama <ruiu@google.com>
Tue, 22 Apr 2014 19:52:05 +0000 (19:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206919 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/SmallVector.h

index 1afa4a21b0fae97e1ca9b35373679f8452fd76f4..791d03c64913a4ee7f2b2f9069f3f5b661e1903f 100644 (file)
@@ -220,7 +220,7 @@ protected:
   /// Guarantees space for at least one more element, or MinSize more
   /// elements if specified.
   void grow(size_t MinSize = 0);
-  
+
 public:
   void push_back(const T &Elt) {
     if (this->EndX >= this->CapacityX)
@@ -247,7 +247,7 @@ template <typename T, bool isPodLike>
 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) {
   size_t CurCapacity = this->capacity();
   size_t CurSize = this->size();
-  // Always grow, even from zero.  
+  // Always grow, even from zero.
   size_t NewCapacity = size_t(NextPowerOf2(CurCapacity+2));
   if (NewCapacity < MinSize)
     NewCapacity = MinSize;
@@ -332,7 +332,7 @@ public:
     memcpy(this->end(), &Elt, sizeof(T));
     this->setEnd(this->end()+1);
   }
-  
+
   void pop_back() {
     this->setEnd(this->end()-1);
   }