Commit 4f03653
committed
fix: change unsigned long to size_t in compute_barycentric_evaluation header
The implementation (.cpp) already uses size_t but the header declared
unsigned long. On Linux these are the same type, but on Windows LLP64
unsigned long is 32-bit while size_t is 64-bit, causing -Wshorten-64-to-32
when passing domain.size (size_t) to the parameter.1 parent fff0739 commit 4f03653
1 file changed
Lines changed: 1 addition & 1 deletion
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
87 | 87 | | |
88 | 88 | | |
89 | 89 | | |
90 | | - | |
| 90 | + | |
91 | 91 | | |
92 | 92 | | |
93 | 93 | | |
| |||
0 commit comments