1
0
mirror of git://projects.qi-hardware.com/cae-tools.git synced 2025-04-21 12:27:27 +03:00

Enable more compiler warnings. Some cleanup.

- cameo/Makefile (CFLAGS): added more warning flags
- cameo/path.h (path_direction): removed unused prototype
- cameo/path.c (angle): renamed to angle_3 to keep it from getting shadowed
  by local variable
This commit is contained in:
Werner Almesberger
2010-11-01 16:56:09 -03:00
parent 5c9e7d5e52
commit d465acbeb5
3 changed files with 5 additions and 4 deletions

View File

@@ -30,7 +30,6 @@ struct path {
struct path *path_new(double r_tool);
void path_add(struct path *path, double x, double y, double z);
struct path *path_reverse(const struct path *path);
int path_direction(const struct path *path);
int path_tool_is_left(const struct path *path);
struct path *path_offset(const struct path *path, int left, int notch);
void path_free(struct path *path);