From 96d9c1f379361341b34207b8a885577ed83a2f6f Mon Sep 17 00:00:00 2001 From: akokoshn Date: Sat, 11 May 2024 16:53:28 +0300 Subject: [PATCH] Initialize unique points array --- .../nil/blueprint/transpiler/templates/recursive_verifier.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/nil/blueprint/transpiler/templates/recursive_verifier.hpp b/include/nil/blueprint/transpiler/templates/recursive_verifier.hpp index d17bec8..3b0c7b0 100644 --- a/include/nil/blueprint/transpiler/templates/recursive_verifier.hpp +++ b/include/nil/blueprint/transpiler/templates/recursive_verifier.hpp @@ -474,7 +474,7 @@ typedef __attribute__((ext_vector_type(2))) // Commitment scheme std::array singles = fill_singles(challenges.xi, challenges.eta); - std::array U; + std::array U{pallas::base_field_type::value_type(0)}; $PREPARE_U_AND_V$ @@ -539,4 +539,4 @@ typedef __attribute__((ext_vector_type(2))) } } -#endif //__RECURSIVE_VERIFIER_TEMPLATE_HPP__ \ No newline at end of file +#endif //__RECURSIVE_VERIFIER_TEMPLATE_HPP__