Skip to content

Commit

Permalink
Merge pull request #29 from aa755/pr1
Browse files Browse the repository at this point in the history
bugfix in unquote_sort: Prop and Set were interchanged.
  • Loading branch information
gmalecha authored Nov 16, 2016
2 parents 59c28b6 + ce31f27 commit 3eeca69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/reify.ml4
Original file line number Diff line number Diff line change
Expand Up @@ -525,9 +525,9 @@ struct
if Term.eq_constr h sType then
raise (NotSupported h)
else if Term.eq_constr h sProp then
Term.Prop Term.Pos
Term.prop_sort
else if Term.eq_constr h sSet then
Term.Prop Term.Null
Term.set_sort
else
raise (Failure "ill-typed, expected sort")

Expand Down

0 comments on commit 3eeca69

Please sign in to comment.