From cc9b9b19c1a9a7002248d7f62053d49002a8b297 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Tue, 23 Apr 2019 08:54:58 +1000 Subject: [PATCH] hash/buzhash: add digest_type typedef --- hash/buzhash.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hash/buzhash.hpp b/hash/buzhash.hpp index cd991b6e..11b48ab6 100644 --- a/hash/buzhash.hpp +++ b/hash/buzhash.hpp @@ -36,6 +36,8 @@ namespace cruft::hash { public: static_assert (sizeof (StateT) >= sizeof (WordT)); + using digest_type = StateT; + template buzhash ( std::size_t _width,