Skip to content
Snippets Groups Projects
Commit 0724a9e3 authored by Peter Frank Perroni's avatar Peter Frank Perroni
Browse files

Fixed a bug in the t_point structure.

parent 416fac08
Branches
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ using namespace std;
typedef struct _point{
int x;
double y;
_point(int _x, int _y){
_point(int _x, double _y){
x = _x, y = _y;
}
}t_point;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment