Skip to content

Commit

Permalink
boolean -> bool :-(
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulKlint committed Nov 5, 2024
1 parent 7f9d40d commit d81c58f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis/typepal/Solver.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ Solver newSolver(map[str,Tree] namedTrees, TModel tm){
}

bool unify(AType given, AType expected){
boolean ok = false;
bool ok = false;
<ok, bindings1> = unify(given, expected, bindings);
if(ok){
bindings += bindings1;
Expand Down

0 comments on commit d81c58f

Please sign in to comment.