Skip to content

Commit 4ae879f

Browse files
committed
hash-util: drop compatibility with boost-1.53
We use boost-1.69 in our EPEL-7 builds. Related: #98 Closes: #168
1 parent b18601b commit 4ae879f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/lib/hash-util.hh

+1-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ std::string hexHashStr(const TSrc &src)
3232
eng.process_bytes(src.data(), src.size());
3333

3434
// 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;
35+
typename TEng::digest_type dst;
3836
eng.get_digest(dst);
3937

4038
// convert the hash to a vector of unsigned int

0 commit comments

Comments
 (0)