From 0724a9e3b9deb3505c7d03a5f933a227bda8bfb2 Mon Sep 17 00:00:00 2001 From: Peter Frank Perroni <pfperroni@inf.ufpr.br> Date: Tue, 1 Aug 2017 17:01:28 -0300 Subject: [PATCH] Fixed a bug in the t_point structure. --- cpp/CSMOn.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/CSMOn.hpp b/cpp/CSMOn.hpp index 05635a1..deed385 100644 --- a/cpp/CSMOn.hpp +++ b/cpp/CSMOn.hpp @@ -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; -- GitLab