diff options
| author | Alexey Gavrilov <rebovas@yahoo.com> | 2024-03-27 19:49:10 +0700 |
|---|---|---|
| committer | Alexey Gavrilov <rebovas@yahoo.com> | 2024-03-27 19:49:10 +0700 |
| commit | e51dea0b6e34c2959b3b0f4a5db6b11d4b619960 (patch) | |
| tree | e6a457ec4b2758c0c3bef78df475ad52d92a7ab4 /include/StringOperations.cpp | |
| parent | e0bac2387b373316337b177fe8aa9851b0d5e870 (diff) | |
Some updates: rename memAddr, define architecture
Diffstat (limited to 'include/StringOperations.cpp')
| -rw-r--r-- | include/StringOperations.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/StringOperations.cpp b/include/StringOperations.cpp index 01e7a76..055892e 100644 --- a/include/StringOperations.cpp +++ b/include/StringOperations.cpp @@ -6,7 +6,7 @@ MemArea::MemArea() start = final = NULL; }; -MemArea::MemArea(const memAddr start, const memAddr final) +MemArea::MemArea(const uintptr start, const uintptr final) { this->start = start; this->final = final; @@ -17,12 +17,12 @@ MemArea::MemArea(const memAddr start, const memAddr final) } }; -memAddr MemArea::begin() +uintptr MemArea::begin() { return start; } -memAddr MemArea::end() +uintptr MemArea::end() { if(start == final) return start; else return final + 1; |
