From 7ce5a4975b7778d37d35487ee1dd37de5ab6f00b Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Wed, 3 Dec 2014 14:44:16 +0000 Subject: [PATCH] Silencing several "multiple copy constructors" warnings from MSVC; NFC. llvm-svn: 223238 --- llvm/unittests/ADT/SmallVectorTest.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/llvm/unittests/ADT/SmallVectorTest.cpp b/llvm/unittests/ADT/SmallVectorTest.cpp index a18785a..ba6c395 100644 --- a/llvm/unittests/ADT/SmallVectorTest.cpp +++ b/llvm/unittests/ADT/SmallVectorTest.cpp @@ -717,7 +717,6 @@ template struct EmplaceableArg { explicit EmplaceableArg(bool) : State(EAS_Arg) {} private: - EmplaceableArg(const EmplaceableArg &X) LLVM_DELETED_FUNCTION; EmplaceableArg &operator=(EmplaceableArg &&) LLVM_DELETED_FUNCTION; EmplaceableArg &operator=(const EmplaceableArg &) LLVM_DELETED_FUNCTION; }; -- 2.7.4