From 6759159aadde2675bdc9a38fc1288414edaf6b1d Mon Sep 17 00:00:00 2001
From: Guillaume Pasero <guillaume.pasero@c-s.fr>
Date: Fri, 12 Jul 2019 12:19:32 +0200
Subject: [PATCH] BUG: values are given in hexadecimal

---
 CompositePreprocessing/include/MaskExtractorFunctor.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CompositePreprocessing/include/MaskExtractorFunctor.h b/CompositePreprocessing/include/MaskExtractorFunctor.h
index 059784f..45b8bb1 100644
--- a/CompositePreprocessing/include/MaskExtractorFunctor.h
+++ b/CompositePreprocessing/include/MaskExtractorFunctor.h
@@ -89,7 +89,7 @@ public:
 	}
 
 private:
-	int m_MasksArray[8] = {0x01, 0x02, 0x04, 0x08, 0x16, 0x32, 0x64, 0x128};
+	int m_MasksArray[8] = {0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80};
 	int m_bit;
 };
 
-- 
GitLab