Skip to content

Commit

Permalink
Fixed clang tidy issue for test/blsct/building_block/imp_inner_prod_a…
Browse files Browse the repository at this point in the history
…rg_tests.cpp
  • Loading branch information
mxaddict committed Dec 24, 2023
1 parent 081fa0e commit 12e4135
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/blsct/building_block/imp_inner_prod_arg_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ BOOST_AUTO_TEST_CASE(test_exec_ypow_loop)
std::vector<Scalar> act;
ImpInnerProdArg::LoopWithYPows<Mcl>(3, y,
[&](const size_t& i, const Scalar& y_pow, const Scalar& y_inv_pow) {
act.emplace_back(Scalar(i));
act.emplace_back(i);
act.emplace_back(y_pow);
act.emplace_back(y_inv_pow);
}
Expand Down

0 comments on commit 12e4135

Please sign in to comment.