solstice-solver

Solver library of the solstice app
git clone git://git.meso-star.com/solstice-solver.git
Log | Files | Refs | README | LICENSE

commit 198de43947a08e3df7086ba261042a8f9a8bebfe
parent 5fb2c34804f535e78b41405f4c5a5de67765013c
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Wed, 29 Jun 2016 09:40:48 +0200

Fix a typo and add a comment.

Diffstat:
Msrc/ssol_object.c | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/ssol_object.c b/src/ssol_object.c @@ -54,7 +54,7 @@ object_ok(const struct ssol_object* object) { ******************************************************************************/ /******************************************************************************* -* Exported ssol_material functions +* Exported ssol_object functions ******************************************************************************/ res_T @@ -76,6 +76,8 @@ ssol_object_create res = RES_MEM_ERR; goto error; } + + /* check if material/shape association is legit: TODO */ SSOL(shape_ref_get(shape)); SSOL(material_ref_get(material));