[llvm] r223238 - Silencing several "multiple copy constructors" warnings from MSVC; NFC.
Aaron Ballman
aaron at aaronballman.com
Wed Dec 3 06:44:16 PST 2014
Author: aaronballman
Date: Wed Dec 3 08:44:16 2014
New Revision: 223238
URL: http://llvm.org/viewvc/llvm-project?rev=223238&view=rev
Log:
Silencing several "multiple copy constructors" warnings from MSVC; NFC.
Modified:
llvm/trunk/unittests/ADT/SmallVectorTest.cpp
Modified: llvm/trunk/unittests/ADT/SmallVectorTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/ADT/SmallVectorTest.cpp?rev=223238&r1=223237&r2=223238&view=diff
==============================================================================
--- llvm/trunk/unittests/ADT/SmallVectorTest.cpp (original)
+++ llvm/trunk/unittests/ADT/SmallVectorTest.cpp Wed Dec 3 08:44:16 2014
@@ -717,7 +717,6 @@ template <int I> 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;
};
More information about the llvm-commits
mailing list