Skip to content

Commit

Permalink
fix compile warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
tommy-waltmann committed Aug 29, 2023
1 parent 32d2773 commit e94d849
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion freud/_locality.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ cdef extern from "PeriodicBuffer.h" namespace "freud::locality":
cdef extern from "Voronoi.h" namespace "freud::locality":
cdef cppclass Voronoi:
Voronoi()
void compute(const NeighborQuery*) nogil except +
void compute(const NeighborQuery*) except + nogil
vector[vector[vec3[double]]] getPolytopes() const
const freud.util.ManagedArray[double] &getVolumes() const
shared_ptr[NeighborList] getNeighborList() const
Expand Down
2 changes: 1 addition & 1 deletion freud/_order.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ cdef extern from "SolidLiquid.h" namespace "freud::order":
bool getNormalizeQ() const
void compute(const freud._locality.NeighborList*,
const freud._locality.NeighborQuery*,
freud._locality.QueryArgs) nogil except +
freud._locality.QueryArgs) except + nogil
unsigned int getLargestClusterSize() const
vector[unsigned int] getClusterSizes() const
const freud.util.ManagedArray[unsigned int] &getClusterIdx() const
Expand Down

0 comments on commit e94d849

Please sign in to comment.