From b45151cf90ca0c153234afe090eef7203d2c6d24 Mon Sep 17 00:00:00 2001 From: Ingmar Schoegl Date: Sat, 12 Aug 2023 10:08:29 -0500 Subject: [PATCH] [Python] Fix function signatures --- interfaces/cython/cantera/kinetics.pxd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interfaces/cython/cantera/kinetics.pxd b/interfaces/cython/cantera/kinetics.pxd index ca959c945..48b2cfb23 100644 --- a/interfaces/cython/cantera/kinetics.pxd +++ b/interfaces/cython/cantera/kinetics.pxd @@ -35,8 +35,8 @@ cdef extern from "cantera/kinetics/Kinetics.h" namespace "Cantera": void addThermo(shared_ptr[CxxThermoPhase]) except +translate_exception void init() except +translate_exception void skipUndeclaredThirdBodies(cbool) - void addReaction(shared_ptr[CxxReaction]) except +translate_exception - void addReaction(shared_ptr[CxxReaction], cbool) except +translate_exception + cbool addReaction(shared_ptr[CxxReaction]) except +translate_exception + cbool addReaction(shared_ptr[CxxReaction], cbool) except +translate_exception void modifyReaction(int, shared_ptr[CxxReaction]) except +translate_exception void invalidateCache() except +translate_exception void resizeReactions()