Skip to content

Fix build warnings: data type redeclared #36

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/pnetcdf/_Dimension.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,8 @@ from ._File cimport File
from ._utils cimport _strencode, _check_err
cimport mpi4py.MPI as MPI

ctypedef MPI.Offset Offset


from libc.string cimport memcpy, memset
from libc.stdlib cimport malloc, free
from mpi4py.libmpi cimport MPI_Offset

include "PnetCDF.pxi"

Expand Down
2 changes: 0 additions & 2 deletions src/pnetcdf/_utils.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@
#
###############################################################################

include "PnetCDF.pxi"
from ._File cimport File
from cpython.mem cimport PyMem_Malloc, PyMem_Free
import numpy as np
from numpy.lib.stride_tricks import as_strided
from libc.stdlib cimport malloc, free
from mpi4py.libmpi cimport MPI_Offset
from mpi4py import MPI


Expand Down
Loading