RedSpah / xxhash_cpp

Port of the xxhash library to C++17.
BSD 2-Clause "Simplified" License
165 stars 35 forks source link

Constructor parameter missing in example usage #3

Closed telkamp closed 6 years ago

telkamp commented 6 years ago

In the example usage the constructor parameter (hash) is missing: xxh::hash_state_t<64> hash_stream(hash)

RedSpah commented 6 years ago

Fixed by adding a default parameter to hash_state_t::hash_state_t and hash_state_t::reset.