From 7a4626c330f315529a8fc28d1dd2a0d0e51791aa Mon Sep 17 00:00:00 2001 From: Yonghye Kwon Date: Wed, 29 Dec 2021 15:48:09 +0900 Subject: [PATCH 1/2] add cmath and cfloat header --- sort-c++/Hungarian.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sort-c++/Hungarian.cpp b/sort-c++/Hungarian.cpp index 601bb1d..a20b0d5 100644 --- a/sort-c++/Hungarian.cpp +++ b/sort-c++/Hungarian.cpp @@ -10,7 +10,8 @@ // #include "Hungarian.h" - +#include +#include HungarianAlgorithm::HungarianAlgorithm(){} HungarianAlgorithm::~HungarianAlgorithm(){} From 16cdd06175de53bc7bdacd09ca7dec3808cd5a34 Mon Sep 17 00:00:00 2001 From: Yonghye Kwon Date: Wed, 29 Dec 2021 15:49:15 +0900 Subject: [PATCH 2/2] add cfloat header --- sort-c++/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sort-c++/main.cpp b/sort-c++/main.cpp index 0d3faa0..f2c4f1e 100644 --- a/sort-c++/main.cpp +++ b/sort-c++/main.cpp @@ -27,6 +27,7 @@ #include // to format image names using setw() and setfill() #include // to check file existence using POSIX function access(). On Linux include . #include +#include #include "Hungarian.h" #include "KalmanTracker.h"