Skip to content

Commit

Permalink
Avoid unnecessary ctypedef redeclaration (#108)
Browse files Browse the repository at this point in the history
* avoid unnecessary ctypedef redeclaration

* import from stdint instead
  • Loading branch information
svlandeg committed Apr 11, 2024
1 parent 4aba49f commit e621b2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion srsly/msgpack/_unpacker.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cdef extern from "Python.h":
from libc.stdlib cimport *
from libc.string cimport *
from libc.limits cimport *
ctypedef unsigned long long uint64_t
from libc.stdint cimport uint64_t

from .exceptions import (
BufferFull,
Expand Down

0 comments on commit e621b2b

Please sign in to comment.