Skip to content

Commit c94a615

Browse files
author
devsh
committed
fix typo in the span hashing, also upgrade parallel-hashmap submodule because it had a validation/assert bug before
1 parent 47f91c9 commit c94a615

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

3rdparty/parallel-hashmap

Submodule parallel-hashmap updated 53 files

include/nbl/core/hash/blake.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ struct blake3_hasher::update_impl<std::span<U,N>,Dummy>
9292
hasher.update(input.data(),input.size()*sizeof(U));
9393
else // Note ideally I'd have some check for a `trivially_serializable` trait or something
9494
for (const auto& item : input)
95-
hasher << input;
95+
hasher << item;
9696

9797
}
9898
};

0 commit comments

Comments
 (0)