Fix cymaterials (bad dereference)
Former-commit-id: 3480b7c8ed9d34370a092f700dd623676d70e64f
This commit is contained in:
parent
38ecd6bce1
commit
6c73a964d9
|
@ -16,7 +16,7 @@ cdef class LorentzDrudeModel:
|
||||||
cdef const qpms_ldparams_t *params
|
cdef const qpms_ldparams_t *params
|
||||||
#cdef bint owns_params
|
#cdef bint owns_params
|
||||||
cdef inline void *rawpointer(self):
|
cdef inline void *rawpointer(self):
|
||||||
return <void *>&(self.params)
|
return <void *>(self.params)
|
||||||
|
|
||||||
cdef class EpsMuGenerator:
|
cdef class EpsMuGenerator:
|
||||||
cdef qpms_epsmu_generator_t g
|
cdef qpms_epsmu_generator_t g
|
||||||
|
|
Loading…
Reference in New Issue