diff --git a/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h b/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h index dae419c9e66..660b2345833 100644 --- a/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h +++ b/Libraries/LibCrypto/BigInt/UnsignedBigInteger.h @@ -38,12 +38,12 @@ class UnsignedBigInteger { public: UnsignedBigInteger(u32 x) { m_words.append(x); } - UnsignedBigInteger(AK::Vector&& words) - : m_words(words) + explicit UnsignedBigInteger(AK::Vector&& words) + : m_words(move(words)) { } - UnsignedBigInteger() {} + UnsignedBigInteger() { } static UnsignedBigInteger from_base10(const String& str); static UnsignedBigInteger create_invalid();