mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-19 06:31:18 +00:00
Use LLVM_DELETED_FUNCTION in place of 'DO NOT IMPLEMENT' comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163969 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8a96348a41
commit
09bc9373f2
@ -440,8 +440,8 @@ public:
|
||||
class MCSectionData : public ilist_node<MCSectionData> {
|
||||
friend class MCAsmLayout;
|
||||
|
||||
MCSectionData(const MCSectionData&); // DO NOT IMPLEMENT
|
||||
void operator=(const MCSectionData&); // DO NOT IMPLEMENT
|
||||
MCSectionData(const MCSectionData&) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const MCSectionData&) LLVM_DELETED_FUNCTION;
|
||||
|
||||
public:
|
||||
typedef iplist<MCFragment> FragmentListType;
|
||||
@ -683,8 +683,8 @@ public:
|
||||
typedef std::vector<DataRegionData>::iterator data_region_iterator;
|
||||
|
||||
private:
|
||||
MCAssembler(const MCAssembler&); // DO NOT IMPLEMENT
|
||||
void operator=(const MCAssembler&); // DO NOT IMPLEMENT
|
||||
MCAssembler(const MCAssembler&) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const MCAssembler&) LLVM_DELETED_FUNCTION;
|
||||
|
||||
MCContext &Context;
|
||||
|
||||
|
@ -178,8 +178,8 @@ namespace llvm {
|
||||
class MCLineSection {
|
||||
|
||||
private:
|
||||
MCLineSection(const MCLineSection&); // DO NOT IMPLEMENT
|
||||
void operator=(const MCLineSection&); // DO NOT IMPLEMENT
|
||||
MCLineSection(const MCLineSection&) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const MCLineSection&) LLVM_DELETED_FUNCTION;
|
||||
|
||||
public:
|
||||
// Constructor to create an MCLineSection with an empty MCLineEntries
|
||||
|
Loading…
x
Reference in New Issue
Block a user