Skip to content

Commit

Permalink
pocl on CI pickier about C++ constructs in C code
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Kienzle committed Jan 29, 2025
1 parent 7217eb9 commit 4945775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sasmodels/models/star_polymer.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ double Iq(double q, double rg_sq, double arms)
// rounding: stacked_disk pearl_necklace multilayer_vesicle linear_pearls
// lamellar_stack_caille lamellar_hg_stack_caille
// truncation: lamellar_stack_paracrystal
return star_polymer_kernel(q, rg_sq, int(arms + 0.5));
return star_polymer_kernel(q, rg_sq, (int)(arms + 0.5));
}

0 comments on commit 4945775

Please sign in to comment.