mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-02 23:26:31 +00:00
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:
@@ -717,7 +717,6 @@ template <int I> struct EmplaceableArg {
|
|||||||
explicit EmplaceableArg(bool) : State(EAS_Arg) {}
|
explicit EmplaceableArg(bool) : State(EAS_Arg) {}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
EmplaceableArg(const EmplaceableArg &X) LLVM_DELETED_FUNCTION;
|
|
||||||
EmplaceableArg &operator=(EmplaceableArg &&) LLVM_DELETED_FUNCTION;
|
EmplaceableArg &operator=(EmplaceableArg &&) LLVM_DELETED_FUNCTION;
|
||||||
EmplaceableArg &operator=(const EmplaceableArg &) LLVM_DELETED_FUNCTION;
|
EmplaceableArg &operator=(const EmplaceableArg &) LLVM_DELETED_FUNCTION;
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user