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
This commit is contained in:
Aaron Ballman 2014-12-03 14:44:16 +00:00
parent 13e20a9dac
commit 42fcf3d61a

View File

@ -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;
};