Skip to content

Commit

Permalink
[fix] typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ocelaiwo committed Oct 12, 2023
1 parent b0648e1 commit 231649d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Solver/MetaSMTBuilder.h
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ MetaSMTBuilder<SolverContext>::getInitialArray(const Array *root) {
if (ref<ConstantSource> constantSource =
dyn_cast<ConstantSource>(root->source)) {
auto constantSize = cast<ConstantExpr>(root->size)->getZExtValue();
for (unsigned i = 0, i < constantSize; ++i) {
for (unsigned i = 0; i < constantSize; ++i) {
typename SolverContext::result_type tmp = evaluate(
_solver,
metaSMT::logic::Array::store(
Expand Down

0 comments on commit 231649d

Please sign in to comment.