mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-23 16:19:52 +00:00
Revert r229142. It breaks the world for unknown reasons.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229144 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -414,7 +414,9 @@ public:
|
|||||||
this->grow(this->size()+NumInputs);
|
this->grow(this->size()+NumInputs);
|
||||||
|
|
||||||
// Copy the new elements over.
|
// Copy the new elements over.
|
||||||
this->uninitialized_copy(in_start, in_end, this->end());
|
// TODO: NEED To compile time dispatch on whether in_iter is a random access
|
||||||
|
// iterator to use the fast uninitialized_copy.
|
||||||
|
std::uninitialized_copy(in_start, in_end, this->end());
|
||||||
this->setEnd(this->end() + NumInputs);
|
this->setEnd(this->end() + NumInputs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user