Skip to content

Commit

Permalink
Fix function signature
Browse files Browse the repository at this point in the history
  • Loading branch information
starseeker committed Feb 4, 2025
1 parent fe2855e commit 06701f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mged/primitives/edfunctab.h
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ struct rt_solid_edit {
void *u_ptr;
};

struct rt_solid_edit_map *rt_solid_edit_map_create();
struct rt_solid_edit_map *rt_solid_edit_map_create(void);
void rt_solid_edit_map_destroy(struct rt_solid_edit_map *);
int rt_solid_edit_map_clbk_set(struct rt_solid_edit_map *em, int ed_cmd, int menu_cmd, int mode, bu_clbk_t f, void *d);
int rt_solid_edit_map_clbk_get(bu_clbk_t *f, void **d, struct rt_solid_edit_map *em, int ed_cmd, int menu_cmd, int mode);
Expand Down
2 changes: 1 addition & 1 deletion src/mged/primitives/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#include "edfunctab.h"

extern "C" struct rt_solid_edit_map *
rt_solid_edit_map_create()
rt_solid_edit_map_create(void)
{
struct rt_solid_edit_map *o = NULL;
BU_GET(o, struct rt_solid_edit_map);
Expand Down

0 comments on commit 06701f3

Please sign in to comment.