Skip to content

Commit

Permalink
Fix cython warning
Browse files Browse the repository at this point in the history
  • Loading branch information
t20100 committed Apr 18, 2024
1 parent 1675965 commit 989f5a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/silx/image/marchingsquares/_mergeimpl.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
##cython: profile=True, warn.undeclared=True, warn.unused=True, warn.unused_result=False, warn.unused_arg=True

# /*##########################################################################
# Copyright (C) 2018-2023 European Synchrotron Radiation Facility
# Copyright (C) 2018-2024 European Synchrotron Radiation Facility
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -85,7 +85,7 @@ cdef cppclass PolygonDescription:
point_index_t end
clist[point_t] points

PolygonDescription() noexcept nogil:
PolygonDescription() nogil:
pass

"""Description of a tile context.
Expand All @@ -108,7 +108,7 @@ cdef cppclass TileContext:
clist[coord_t] final_pixels
cset[coord_t] pixels

TileContext() noexcept nogil:
TileContext() nogil:
pass


Expand Down

0 comments on commit 989f5a4

Please sign in to comment.