We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b18601b commit 4ae879fCopy full SHA for 4ae879f
src/lib/hash-util.hh
@@ -32,9 +32,7 @@ std::string hexHashStr(const TSrc &src)
32
eng.process_bytes(src.data(), src.size());
33
34
// export the hash as an array of unsigned int
35
- // FIXME: std::remove_reference is needed on el7 (boost-1.53)
36
- using TDst = typename TEng::digest_type;
37
- typename std::remove_reference<TDst>::type dst;
+ typename TEng::digest_type dst;
38
eng.get_digest(dst);
39
40
// convert the hash to a vector of unsigned int
0 commit comments