aboutsummaryrefslogtreecommitdiff
path: root/llvm/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
commit259a5a649f195caf58287473c47a49029e601031 (patch)
tree229a8f13cca3dec8fe2108ab8ee36b7221982c5b /llvm/unittests/ADT/SmallVectorTest.cpp
parentd028adf7bc92c0595167bf41269ccded4e2f2823 (diff)
downloadllvm-259a5a649f195caf58287473c47a49029e601031.zip
llvm-259a5a649f195caf58287473c47a49029e601031.tar.gz
llvm-259a5a649f195caf58287473c47a49029e601031.tar.bz2
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. llvm-svn: 203375
Diffstat (limited to 'llvm/unittests/ADT/SmallVectorTest.cpp')
-rw-r--r--llvm/unittests/ADT/SmallVectorTest.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/llvm/unittests/ADT/SmallVectorTest.cpp b/llvm/unittests/ADT/SmallVectorTest.cpp
index 0ecb798..90c7982 100644
--- a/llvm/unittests/ADT/SmallVectorTest.cpp
+++ b/llvm/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");