diff options
Diffstat (limited to 'lib/IR/AsmWriter.h')
-rw-r--r-- | lib/IR/AsmWriter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/IR/AsmWriter.h b/lib/IR/AsmWriter.h index 60da5ad..7716fa6 100644 --- a/lib/IR/AsmWriter.h +++ b/lib/IR/AsmWriter.h @@ -42,8 +42,8 @@ SlotTracker *createSlotTracker(const Module *M); //===----------------------------------------------------------------------===// class TypePrinting { - TypePrinting(const TypePrinting &) LLVM_DELETED_FUNCTION; - void operator=(const TypePrinting&) LLVM_DELETED_FUNCTION; + TypePrinting(const TypePrinting &) = delete; + void operator=(const TypePrinting&) = delete; public: /// NamedTypes - The named types that are used by the current module. |