From 6b0668453941b95a5e5f718d8054f5f057be8cc3 Mon Sep 17 00:00:00 2001 From: dpasukhi Date: Thu, 14 Nov 2024 07:41:02 +0000 Subject: [PATCH] Coding - Compiling issue on aarch64 #157 Enumerator value evaluates to -1, which cannot be narrowed to type 'char' [-Wc++11-narrowing] --- src/DE/DE_ShapeFixParameters.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DE/DE_ShapeFixParameters.hxx b/src/DE/DE_ShapeFixParameters.hxx index 98c0dfd52c..eb975ce02d 100644 --- a/src/DE/DE_ShapeFixParameters.hxx +++ b/src/DE/DE_ShapeFixParameters.hxx @@ -18,7 +18,7 @@ struct DE_ShapeFixParameters { //! Enum, classifying a type of value for parameters - enum class FixMode : char + enum class FixMode : signed char { FixOrNot = -1, //!< Procedure will be executed or not (depending on the situation) NotFix = 0, //!< Procedure will be executed