Skip to content

Commit

Permalink
fix: missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
FaaizHaikal committed Jul 14, 2024
1 parent 86e73d7 commit 504c587
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 504c587

Please sign in to comment.