Drop implicit alignment argument from FixedHash

This commit is contained in:
Alex Beregszaszi
2022-09-27 17:58:32 +02:00
parent 725253551e
commit 2a41295d03
4 changed files with 18 additions and 17 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ public:
explicit FixedHash() { m_data.fill(0); }
/// Construct from another hash, filling with zeroes or cropping as necessary.
template <unsigned M> explicit FixedHash(FixedHash<M> const& _h, ConstructFromHashType _t = AlignLeft)
template <unsigned M> explicit FixedHash(FixedHash<M> const& _h, ConstructFromHashType _t)
{
m_data.fill(0);
unsigned c = std::min(M, N);