mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-18 11:24:01 +00:00
Use LLVM_DELETED_FUNCTION in place of 'DO NOT IMPLEMENT' comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163974 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -8,6 +8,7 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/Support/StreamableMemoryObject.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include <cassert>
|
||||
#include <cstring>
|
||||
|
||||
@ -49,8 +50,8 @@ private:
|
||||
return static_cast<ptrdiff_t>(address) == LastChar - FirstChar;
|
||||
}
|
||||
|
||||
RawMemoryObject(const RawMemoryObject&); // DO NOT IMPLEMENT
|
||||
void operator=(const RawMemoryObject&); // DO NOT IMPLEMENT
|
||||
RawMemoryObject(const RawMemoryObject&) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const RawMemoryObject&) LLVM_DELETED_FUNCTION;
|
||||
};
|
||||
|
||||
int RawMemoryObject::readByte(uint64_t address, uint8_t* ptr) const {
|
||||
|
Reference in New Issue
Block a user