aboutsummaryrefslogtreecommitdiff
path: root/zencore/iohash.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2021-09-03 12:25:41 +0200
committerStefan Boberg <[email protected]>2021-09-03 12:25:41 +0200
commitfe3ed120b9dccfc58643722e5e74ebd7dca96c67 (patch)
tree179e499f25c5ca0a96857bd59daac79784cdbc99 /zencore/iohash.cpp
parentAddressed signed/unsigned comparison warnings (diff)
downloadzen-fe3ed120b9dccfc58643722e5e74ebd7dca96c67.tar.xz
zen-fe3ed120b9dccfc58643722e5e74ebd7dca96c67.zip
Mada IoHash::Zero zero initialization explicit
Diffstat (limited to 'zencore/iohash.cpp')
-rw-r--r--zencore/iohash.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zencore/iohash.cpp b/zencore/iohash.cpp
index fbfaf8363..ad8d89ff0 100644
--- a/zencore/iohash.cpp
+++ b/zencore/iohash.cpp
@@ -11,7 +11,7 @@
namespace zen {
-const IoHash IoHash::Zero; // Initialized to all zeros
+const IoHash IoHash::Zero{}; // Initialized to all zeros
IoHash
IoHash::HashBuffer(const void* data, size_t byteCount)