summaryrefslogtreecommitdiff
path: root/unittests/ADT/SmallVectorTest.cpp
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2014-03-09 06:22:58 +0000
committerDavid Blaikie <dblaikie@gmail.com>2014-03-09 06:22:58 +0000
commit3e07f8a03d85956013cd9e9b100ac274f44f3f34 (patch)
treea3e0b34ce17d07d924318c8a235d21fe62039f49 /unittests/ADT/SmallVectorTest.cpp
parented8ba2e58e6ad9069feeba7bfca60b8873d23743 (diff)
downloadllvm-3e07f8a03d85956013cd9e9b100ac274f44f3f34.tar.gz
llvm-3e07f8a03d85956013cd9e9b100ac274f44f3f34.tar.bz2
llvm-3e07f8a03d85956013cd9e9b100ac274f44f3f34.tar.xz
Revert "Clean up SmallString a bit"
This reverts commit r203374. Ambiguities in assign... oh well. I'm just going to revert this and probably not try to recommit it as it's not terribly important. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203375 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/ADT/SmallVectorTest.cpp')
-rw-r--r--unittests/ADT/SmallVectorTest.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/unittests/ADT/SmallVectorTest.cpp b/unittests/ADT/SmallVectorTest.cpp
index 0ecb798779..90c7982699 100644
--- a/unittests/ADT/SmallVectorTest.cpp
+++ b/unittests/ADT/SmallVectorTest.cpp
@@ -338,17 +338,6 @@ TYPED_TEST(SmallVectorTest, AssignTest) {
this->assertValuesInOrder(this->theVector, 2u, 77, 77);
}
-TYPED_TEST(SmallVectorTest, AssignIterPair) {
- SCOPED_TRACE("AssignIterPair");
-
- std::vector<int> v;
- v.push_back(1);
- v.push_back(2);
- this->theVector.push_back(Constructable(1));
- this->theVector.assign(v.begin(), v.end());
- this->assertValuesInOrder(this->theVector, 2u, 1, 2);
-}
-
// Erase a single element
TYPED_TEST(SmallVectorTest, EraseTest) {
SCOPED_TRACE("EraseTest");