Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cherry-pick: API BREAK: use unsigned types for 1-bit fields of 'obj_state_s' #85

Merged
merged 1 commit into from
May 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading