summaryrefslogtreecommitdiffstats
path: root/llvm/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-12-17 21:23:46 +0000
committerChris Lattner <sabre@nondot.org>2009-12-17 21:23:46 +0000
commitcbc0804c7189864c28006673e14224bfcc8c70a2 (patch)
tree5f74783824890e39cfffd8c174d4d238f23b3c7d /llvm/include
parent5842c9968a861f23f67ea472a50d409e97824390 (diff)
downloadbcm5719-llvm-cbc0804c7189864c28006673e14224bfcc8c70a2.tar.gz
bcm5719-llvm-cbc0804c7189864c28006673e14224bfcc8c70a2.zip
tabs -> spaces.
llvm-svn: 91622
Diffstat (limited to 'llvm/include')
-rw-r--r--llvm/include/llvm/ADT/SmallVector.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/ADT/SmallVector.h b/llvm/include/llvm/ADT/SmallVector.h
index 61c3b1bfbea..89acefd0618 100644
--- a/llvm/include/llvm/ADT/SmallVector.h
+++ b/llvm/include/llvm/ADT/SmallVector.h
@@ -495,15 +495,15 @@ public:
// Copy over the elements that we're about to overwrite.
T *OldEnd = this->end();
- this->setEnd(this->end() + NumToInsert);
+ this->setEnd(this->end() + NumToInsert);
size_t NumOverwritten = OldEnd-I;
- this->uninitialized_copy(I, OldEnd, this->end()-NumOverwritten);
+ this->uninitialized_copy(I, OldEnd, this->end()-NumOverwritten);
// Replace the overwritten part.
std::copy(From, From+NumOverwritten, I);
// Insert the non-overwritten middle part.
- this->uninitialized_copy(From+NumOverwritten, To, OldEnd);
+ this->uninitialized_copy(From+NumOverwritten, To, OldEnd);
return I;
}
OpenPOWER on IntegriCloud