mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-13 01:15:32 +00:00
SmallVectorTest: Make the deleted member functions private to help MSVC users.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210665 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a2dca4cc04
commit
e23e227a5c
@ -143,6 +143,7 @@ struct NonCopyable {
|
||||
NonCopyable() {}
|
||||
NonCopyable(NonCopyable &&) {}
|
||||
NonCopyable &operator=(NonCopyable &&) { return *this; }
|
||||
private:
|
||||
NonCopyable(const NonCopyable &) LLVM_DELETED_FUNCTION;
|
||||
NonCopyable &operator=(const NonCopyable &) LLVM_DELETED_FUNCTION;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user