SmallVector: Move emplace_back to SmallVectorImpl.
[oota-llvm.git] / include / llvm / ADT / SmallString.h
index 2cfb5b9f2a9d4b31b46d53b61b4654c2527ef85c..e569f54481a2bcd379e5a22e93c53d79e52145c3 100644 (file)
@@ -34,9 +34,6 @@ public:
   template<typename ItTy>
   SmallString(ItTy S, ItTy E) : SmallVector<char, InternalLen>(S, E) {}
 
-  /// Copy ctor.
-  SmallString(const SmallString &RHS) : SmallVector<char, InternalLen>(RHS) {}
-
   // Note that in order to add new overloads for append & assign, we have to
   // duplicate the inherited versions so as not to inadvertently hide them.