Skip to content

Commit

Permalink
cherry-pick: API BREAK: use unsigned types for 1-bit fields of 'obj_s…
Browse files Browse the repository at this point in the history
…tate_s' (#85)
  • Loading branch information
edaniels committed May 27, 2024
1 parent 606fdf5 commit c66e25e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions internal/ccall/gvc/gvcjob.h
Original file line number Diff line number Diff line change
Expand Up @@ -232,16 +232,16 @@ extern "C" {
char *tailtarget;
char *headtarget;

int explicit_tooltip:1;
int explicit_tailtooltip:1;
int explicit_headtooltip:1;
int explicit_labeltooltip:1;
int explicit_tailtarget:1;
int explicit_headtarget:1;
int explicit_edgetarget:1;
int explicit_tailurl:1;
int explicit_headurl:1;
int labeledgealigned:1;
unsigned explicit_tooltip:1;
unsigned explicit_tailtooltip:1;
unsigned explicit_headtooltip:1;
unsigned explicit_labeltooltip:1;
unsigned explicit_tailtarget:1;
unsigned explicit_headtarget:1;
unsigned explicit_edgetarget:1;
unsigned explicit_tailurl:1;
unsigned explicit_headurl:1;
unsigned labeledgealigned:1;

/* primary mapped region - node shape, edge labels */
map_shape_t url_map_shape;
Expand Down

0 comments on commit c66e25e

Please sign in to comment.