Skip to content

Commit

Permalink
replaced boost_check with boost_assert (#226)
Browse files Browse the repository at this point in the history
  • Loading branch information
CblPOK-git authored Nov 17, 2023
1 parent 3bfc6d2 commit a4fc676
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
#include <nil/crypto3/zk/math/expression_visitors.hpp>
#include <nil/crypto3/zk/snark/arithmetization/plonk/constraint.hpp>
#include <nil/crypto3/zk/snark/arithmetization/plonk/variable.hpp>
#include <boost/assert.hpp>

namespace nil {
namespace crypto3 {
Expand Down Expand Up @@ -60,7 +61,7 @@ namespace nil {
}

void append_option(const std::vector<variable_type> &variables){
BOOST_CHECK(variables.size() == columns_number);
BOOST_ASSERT(variables.size() == columns_number);
lookup_options.push_back(variables);
}
};
Expand Down

0 comments on commit a4fc676

Please sign in to comment.