Skip to content

Commit ba57219

Browse files
authored
Typo corrected (C++ Code)
Reference: spmallick#128 Resolved.
1 parent 82112fe commit ba57219

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ConvexHull/example.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ int main(int argc, char** argv) {
4545
CHAIN_APPROX_SIMPLE, Point(0, 0));
4646

4747
// create convex hull vector
48-
vector<vector<Point>> hull(contours.size());
48+
vector< vector<Point> > hull(contours.size());
4949

5050
// find convex hull for each contour
5151
for(int i = 0; i < contours.size(); i++)

0 commit comments

Comments
 (0)