Fix cymaterials (bad dereference)

Former-commit-id: 3480b7c8ed9d34370a092f700dd623676d70e64f
This commit is contained in:
Marek Nečada 2019-08-11 16:19:37 +03:00
parent 38ecd6bce1
commit 6c73a964d9
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ cdef class LorentzDrudeModel:
cdef const qpms_ldparams_t *params
#cdef bint owns_params
cdef inline void *rawpointer(self):
return <void *>&(self.params)
return <void *>(self.params)
cdef class EpsMuGenerator:
cdef qpms_epsmu_generator_t g