We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4173cde commit 68b37cfCopy full SHA for 68b37cf
src/opentimelineio/algo/editAlgorithm.cpp
@@ -411,7 +411,7 @@ void trim(
411
if (delta_out.value() != 0.0)
412
{
413
const int next_index = index + 1;
414
- if (next_index < children.size())
+ if (static_cast<size_t>(next_index) < children.size())
415
416
auto next = dynamic_retainer_cast<Item>(children[next_index]);
417
auto gap_next = dynamic_retainer_cast<Gap>(children[next_index]);
0 commit comments