Skip to content

Commit

Permalink
FIX: Better
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Sep 13, 2024
1 parent 9ed4422 commit fb9bb5c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tvtk/array_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@
elif VTK_LONG_TYPE_SIZE == 8:
LONG_TYPE_CODE = numpy.int64
ULONG_TYPE_CODE = numpy.uint64
LONG_LONG_TYPE_CODE = None
if VTK_ID_TYPE_SIZE == 4:
LONG_LONG_TYPE_CODE = numpy.int64
else:
LONG_LONG_TYPE_CODE = None

BASE_REFERENCE_COUNT = vtk.vtkObject().GetReferenceCount()

Expand Down

0 comments on commit fb9bb5c

Please sign in to comment.