mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-16 19:28:14 -06:00
Fix signed-unsigned compare
This commit is contained in:
parent
c90ecac48e
commit
7c7982d9f3
2 changed files with 2 additions and 2 deletions
|
@ -685,7 +685,7 @@ SV*
|
|||
polynode_children_2_perl(const ClipperLib::PolyNode& node)
|
||||
{
|
||||
AV* av = newAV();
|
||||
const unsigned int len = node.ChildCount();
|
||||
const int len = node.ChildCount();
|
||||
if (len > 0) av_extend(av, len-1);
|
||||
for (int i = 0; i < len; ++i) {
|
||||
av_store(av, i, polynode2perl(*node.Childs[i]));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue