From c8386fc2dbd3406ca89fe8219f2ddee5809d6453 Mon Sep 17 00:00:00 2001 From: sowle Date: Sun, 11 Apr 2021 00:20:18 +0300 Subject: [PATCH] crypto: gcc fixup 2 --- tests/functional_tests/crypto_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional_tests/crypto_tests.cpp b/tests/functional_tests/crypto_tests.cpp index 4dca1123..5413b512 100644 --- a/tests/functional_tests/crypto_tests.cpp +++ b/tests/functional_tests/crypto_tests.cpp @@ -224,7 +224,7 @@ struct alignas(32) scalar_t } // copy at most 32 bytes and reduce - scalar_t(const boost::multiprecision::cpp_int &bigint) + explicit scalar_t(const boost::multiprecision::cpp_int &bigint) { zero(); unsigned int bytes_to_copy = bigint.backend().size() * bigint.backend().limb_bits / 8;