3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-22 12:22:05 +00:00

Build system bugfixes.

Partially fixes #27
This commit is contained in:
Christoph M. Wintersteiger 2015-04-08 12:09:14 +01:00
parent ba066ff899
commit 03020b9f96
2 changed files with 5 additions and 5 deletions

View file

@ -1169,7 +1169,7 @@ def mk_ml():
ml_i.write('type ptr\n')
ml_native.write('and z3_symbol = ptr\n')
ml_i.write('and z3_symbol = ptr\n')
for k, v in Type2Str.iteritems():
for k, v in Type2Str.items():
if is_obj(k):
ml_native.write('and %s = ptr\n' % v.lower())
ml_i.write('and %s = ptr\n' % v.lower())