Skip to content

Commit

Permalink
Fix incorrect signature on connectivity functions
Browse files Browse the repository at this point in the history
  • Loading branch information
mdpiper committed Jan 30, 2020
1 parent 7be4a3b commit 9b5b34d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bmi.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ typedef struct {
int (*get_grid_node_count)(void *self, int grid, int *count);
int (*get_grid_edge_count)(void *self, int grid, int *count);
int (*get_grid_face_count)(void *self, int grid, int *count);
int (*get_grid_edge_nodes)(void *self, int grid, int **edge_nodes);
int (*get_grid_face_edges)(void *self, int grid, int **face_edges);
int (*get_grid_face_nodes)(void *self, int grid, int **face_nodes);
int (*get_grid_nodes_per_face)(void *self, int grid, int **nodes_per_face);
int (*get_grid_edge_nodes)(void *self, int grid, int *edge_nodes);
int (*get_grid_face_edges)(void *self, int grid, int *face_edges);
int (*get_grid_face_nodes)(void *self, int grid, int *face_nodes);
int (*get_grid_nodes_per_face)(void *self, int grid, int *nodes_per_face);
} Bmi;

#endif

0 comments on commit 9b5b34d

Please sign in to comment.