Skip to content

Commit

Permalink
Merge pull request #23 from ichiro-its/hotfix/missing-semi-colon
Browse files Browse the repository at this point in the history
fix: missing semicolon
  • Loading branch information
FaaizHaikal authored Jul 14, 2024
2 parents 86e73d7 + 504c587 commit 028c2c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ninshiki_cpp/utils/contours.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ std::vector<std::vector<cv::Point>> Contours::split_left(float x)
}
}

return left_contours
return left_contours;
}
std::vector<std::vector<cv::Point>> Contours::split_right(float x)
{
Expand Down

0 comments on commit 028c2c2

Please sign in to comment.