From 42fcf3d61a8f17ee43ef17faef1639d5f438ab9b 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223238 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/ADT/SmallVectorTest.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/unittests/ADT/SmallVectorTest.cpp b/unittests/ADT/SmallVectorTest.cpp index a18785af254..ba6c395e69f 100644 --- a/unittests/ADT/SmallVectorTest.cpp +++ b/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.34.1