diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2015-02-15 22:54:08 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2015-02-15 22:54:08 +0000 |
commit | abc18920577c85c45458ee9de7dfec2d3ee54cef (patch) | |
tree | f2708850cb4fca4fe989862fda7656e9736a13ec /clang/lib/CodeGen/CodeGenModule.h | |
parent | 8a417bd97b9cf57fbc49bba64a677535dea2b4b3 (diff) | |
download | bcm5719-llvm-abc18920577c85c45458ee9de7dfec2d3ee54cef.tar.gz bcm5719-llvm-abc18920577c85c45458ee9de7dfec2d3ee54cef.zip |
Removing LLVM_DELETED_FUNCTION, as MSVC 2012 was the last reason for requiring the macro. NFC; Clang edition.
llvm-svn: 229339
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 81b758a7396..7daa0932e1a 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -258,8 +258,8 @@ public: /// This class organizes the cross-function state that is used while generating /// LLVM code. class CodeGenModule : public CodeGenTypeCache { - CodeGenModule(const CodeGenModule &) LLVM_DELETED_FUNCTION; - void operator=(const CodeGenModule &) LLVM_DELETED_FUNCTION; + CodeGenModule(const CodeGenModule &) = delete; + void operator=(const CodeGenModule &) = delete; public: struct Structor { |