Remove void in build_spinodal definition

This commit is contained in:
Ian Bell
2016-10-23 20:42:34 -06:00
parent 8bb9c517d7
commit 42e74fab5d
2 changed files with 2 additions and 2 deletions

View File

@@ -83,7 +83,7 @@ cdef class AbstractState:
cpdef tuple criticality_contour_values(self)
## Spinodal curve(s)
cpdef void build_spinodal(self) except *
cpdef build_spinodal(self) except *
cpdef PySpinodalData get_spinodal_data(self)
## Reducing point

View File

@@ -173,7 +173,7 @@ cdef class AbstractState:
self.thisptr.criticality_contour_values(L1star, M1star)
return L1star, M1star
cpdef void build_spinodal(self) except *:
cpdef build_spinodal(self) except *:
""" Calculate the spinodal - wrapper of c++ function :cpapi:`CoolProp::AbstractState::build_spinodal` """
self.thisptr.build_spinodal()
cpdef PySpinodalData get_spinodal_data(self):