diff options
| author | Stefan Boberg <[email protected]> | 2023-05-22 22:17:18 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2023-05-22 22:17:18 +0200 |
| commit | bcadb0bbb9c95e00f1fca73fe7b4754541a61cbf (patch) | |
| tree | 15697711dac101091544f23c3f9e3b5f55cc0dd5 /src | |
| parent | removed some old test code which is no longer useful (diff) | |
| download | zen-bcadb0bbb9c95e00f1fca73fe7b4754541a61cbf.tar.xz zen-bcadb0bbb9c95e00f1fca73fe7b4754541a61cbf.zip | |
MemoryView::RightChop -> const
Diffstat (limited to 'src')
| -rw-r--r-- | src/zencore/include/zencore/memory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zencore/include/zencore/memory.h b/src/zencore/include/zencore/memory.h index 560fa9ffc..9c9a0330e 100644 --- a/src/zencore/include/zencore/memory.h +++ b/src/zencore/include/zencore/memory.h @@ -228,7 +228,7 @@ struct MemoryView m_Data = GetDataAtOffsetNoCheck(Offset); } - inline MemoryView RightChop(uint64_t InSize) + inline MemoryView RightChop(uint64_t InSize) const { MemoryView View(*this); View.RightChopInline(InSize); |