From: Craig Topper Date: Sat, 15 Sep 2012 16:23:52 +0000 (+0000) Subject: Use LLVM_DELETED_FUNCTION in place of 'DO NOT IMPLEMENT' comments. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=85aadc07d5c5688250b1af6d5bcb3e419fdb8862;p=oota-llvm.git Use LLVM_DELETED_FUNCTION in place of 'DO NOT IMPLEMENT' comments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163970 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/MC/MCParser/AsmParser.cpp b/lib/MC/MCParser/AsmParser.cpp index 38c8f0e5922..0a09aebbfec 100644 --- a/lib/MC/MCParser/AsmParser.cpp +++ b/lib/MC/MCParser/AsmParser.cpp @@ -84,8 +84,8 @@ public: class AsmParser : public MCAsmParser { friend class GenericAsmParser; - AsmParser(const AsmParser &); // DO NOT IMPLEMENT - void operator=(const AsmParser &); // DO NOT IMPLEMENT + AsmParser(const AsmParser &) LLVM_DELETED_FUNCTION; + void operator=(const AsmParser &) LLVM_DELETED_FUNCTION; private: AsmLexer Lexer; MCContext &Ctx;