diff options
author | Craig Topper <craig.topper@gmail.com> | 2012-09-16 21:37:56 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2012-09-16 21:37:56 +0000 |
commit | f630e49efc7bf3f1716b6daab3c2cc11a908754a (patch) | |
tree | 0d75be23a098a5db30544eb3bd5991f053f3005f /include/llvm/Value.h | |
parent | fbb13471ed99ab8fdc3dbadb091ee5e2295b7b26 (diff) | |
download | external_llvm-f630e49efc7bf3f1716b6daab3c2cc11a908754a.tar.gz external_llvm-f630e49efc7bf3f1716b6daab3c2cc11a908754a.tar.bz2 external_llvm-f630e49efc7bf3f1716b6daab3c2cc11a908754a.zip |
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
Diffstat (limited to 'include/llvm/Value.h')
-rw-r--r-- | include/llvm/Value.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Value.h b/include/llvm/Value.h index f2b9cdfbfd..84113fe884 100644 --- a/include/llvm/Value.h +++ b/include/llvm/Value.h @@ -80,8 +80,8 @@ private: friend class ValueHandleBase; ValueName *Name; - void operator=(const Value &); // Do not implement - Value(const Value &); // Do not implement + void operator=(const Value &) LLVM_DELETED_FUNCTION; + Value(const Value &) LLVM_DELETED_FUNCTION; protected: /// printCustom - Value subclasses can override this to implement custom |