Fix compilation warning
parent
ed4996f652
commit
fa9187ac77
|
|
@ -54,7 +54,7 @@ public:
|
||||||
/// \brief Copy construct a ModularArithmetic
|
/// \brief Copy construct a ModularArithmetic
|
||||||
/// \param ma other ModularArithmetic
|
/// \param ma other ModularArithmetic
|
||||||
ModularArithmetic(const ModularArithmetic &ma)
|
ModularArithmetic(const ModularArithmetic &ma)
|
||||||
: m_modulus(ma.m_modulus), m_result(static_cast<word>(0), ma.m_modulus.reg.size()) {}
|
: AbstractRing<Integer>(ma), m_modulus(ma.m_modulus), m_result(static_cast<word>(0), ma.m_modulus.reg.size()) {}
|
||||||
|
|
||||||
/// \brief Construct a ModularArithmetic
|
/// \brief Construct a ModularArithmetic
|
||||||
/// \param bt BER encoded ModularArithmetic
|
/// \param bt BER encoded ModularArithmetic
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue