mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-17 20:23:59 +00:00
Use LLVM_DELETED_FUNCTION for copy constructors and copy assignment operators that aren't implemented.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164006 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -47,8 +47,8 @@ private:
|
||||
Optional<std::pair<std::string, int> > Owner;
|
||||
Optional<error_code> Error;
|
||||
|
||||
LockFileManager(const LockFileManager &);
|
||||
LockFileManager &operator=(const LockFileManager &);
|
||||
LockFileManager(const LockFileManager &) LLVM_DELETED_FUNCTION;
|
||||
LockFileManager &operator=(const LockFileManager &) LLVM_DELETED_FUNCTION;
|
||||
|
||||
static Optional<std::pair<std::string, int> >
|
||||
readLockFile(StringRef LockFileName);
|
||||
|
Reference in New Issue
Block a user