diff options
| author | Stefan Boberg <[email protected]> | 2021-09-03 12:25:41 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-03 12:25:41 +0200 |
| commit | fe3ed120b9dccfc58643722e5e74ebd7dca96c67 (patch) | |
| tree | 179e499f25c5ca0a96857bd59daac79784cdbc99 /zencore/iohash.cpp | |
| parent | Addressed signed/unsigned comparison warnings (diff) | |
| download | zen-fe3ed120b9dccfc58643722e5e74ebd7dca96c67.tar.xz zen-fe3ed120b9dccfc58643722e5e74ebd7dca96c67.zip | |
Mada IoHash::Zero zero initialization explicit
Diffstat (limited to 'zencore/iohash.cpp')
| -rw-r--r-- | zencore/iohash.cpp | 2 |
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) |