diff options
| author | Jesper Jensen <jesper@jnsn.dev> | 2026-02-11 20:02:04 +0100 |
|---|---|---|
| committer | Jesper Jensen <jesper@jnsn.dev> | 2026-02-11 20:02:04 +0100 |
| commit | 679907d1b2023396b5f353b3390ca0879fc15e50 (patch) | |
| tree | 2688a6f42bcf2688c80a96a9bd2128982befcd64 /inc/cad/solve.h | |
| parent | 254e05a47ad4e22fa20885dec62acc59ecc561d0 (diff) | |
Free some memory before it leaks
Diffstat (limited to 'inc/cad/solve.h')
| -rw-r--r-- | inc/cad/solve.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/inc/cad/solve.h b/inc/cad/solve.h index d1afce5..a470aae 100644 --- a/inc/cad/solve.h +++ b/inc/cad/solve.h @@ -103,6 +103,7 @@ struct constraint { void alias_point(struct constraints *c, struct component *alias, struct component *target); void add_constraint(struct constraints *c, struct constraint *new); +void free_constraints(struct constraints *c); bool solve_constraints(struct constraints *constraints, struct drawing *drawing); #define DEG(x) ((x) * M_PI / 180.0) |
