aboutsummaryrefslogtreecommitdiff
path: root/zencore/iohash.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2021-09-02 13:06:18 +0200
committerStefan Boberg <[email protected]>2021-09-02 13:06:18 +0200
commita57d4a96f8b9323da96d264e9e4cbbab988e1cf3 (patch)
tree02da88ceb7b5f42a6ec9b478ed4e61d9f790157d /zencore/iohash.cpp
parentInitial implementation of CbPackage HTTP response writing (diff)
downloadzen-a57d4a96f8b9323da96d264e9e4cbbab988e1cf3.tar.xz
zen-a57d4a96f8b9323da96d264e9e4cbbab988e1cf3.zip
IoHash::HashMemory -> IoHash::HashBuffer for consistency with UE5 code
Diffstat (limited to 'zencore/iohash.cpp')
-rw-r--r--zencore/iohash.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/zencore/iohash.cpp b/zencore/iohash.cpp
index 9b095ccdb..2b9bec120 100644
--- a/zencore/iohash.cpp
+++ b/zencore/iohash.cpp
@@ -14,7 +14,7 @@ namespace zen {
IoHash IoHash::Zero; // Initialized to all zeros
IoHash
-IoHash::HashMemory(const void* data, size_t byteCount)
+IoHash::HashBuffer(const void* data, size_t byteCount)
{
BLAKE3 b3 = BLAKE3::HashMemory(data, byteCount);
@@ -25,7 +25,7 @@ IoHash::HashMemory(const void* data, size_t byteCount)
}
IoHash
-IoHash::HashMemory(const CompositeBuffer& Buffer)
+IoHash::HashBuffer(const CompositeBuffer& Buffer)
{
IoHashStream Hasher;