From b3936ae649e34bafe881917802dfa3a93e80fae8 Mon Sep 17 00:00:00 2001 From: Trygve Date: Wed, 8 May 2024 00:28:29 +0200 Subject: [PATCH] Forgot to change int to uint8_t in Point constructor --- src/contour_creator.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contour_creator.hh b/src/contour_creator.hh index c59c676..58cde1d 100644 --- a/src/contour_creator.hh +++ b/src/contour_creator.hh @@ -36,7 +36,7 @@ class Point int y; uint8_t mscase; //!< The case outputted by the algorithm. A number between 0 and 15 bool allocated = false; //!< Used when sorting the points to see if it has been sorted - Point(int x, int y, int mscase){ + Point(int x, int y, uint8_t mscase){ this -> x = x; this -> y = y; this -> mscase = mscase;