Skip to content

Commit

Permalink
Enable opaque pointers by default
Browse files Browse the repository at this point in the history
  • Loading branch information
rj-jesus committed Oct 7, 2024
1 parent 23e02cb commit fae7c7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvmlite/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
# FIXME: Remove me once typed pointers are no longer supported.
def _opaque_pointers_enabled():
import os
return os.environ.get('LLVMLITE_ENABLE_OPAQUE_POINTERS', '0') == '1'
return os.environ.get('LLVMLITE_ENABLE_OPAQUE_POINTERS', '1') == '1'
opaque_pointers_enabled = _opaque_pointers_enabled()
del _opaque_pointers_enabled

0 comments on commit fae7c7f

Please sign in to comment.