aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support/StreamingMemoryObject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Support/StreamingMemoryObject.cpp')
-rw-r--r--lib/Support/StreamingMemoryObject.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Support/StreamingMemoryObject.cpp b/lib/Support/StreamingMemoryObject.cpp
index 68beeef..f39bc56 100644
--- a/lib/Support/StreamingMemoryObject.cpp
+++ b/lib/Support/StreamingMemoryObject.cpp
@@ -45,8 +45,8 @@ private:
return static_cast<std::ptrdiff_t>(address) < LastChar - FirstChar;
}
- RawMemoryObject(const RawMemoryObject&) LLVM_DELETED_FUNCTION;
- void operator=(const RawMemoryObject&) LLVM_DELETED_FUNCTION;
+ RawMemoryObject(const RawMemoryObject&) = delete;
+ void operator=(const RawMemoryObject&) = delete;
};
uint64_t RawMemoryObject::readBytes(uint8_t *Buf, uint64_t Size,