From 168be0802f35bb98124dc8d555faa882686fa2f2 Mon Sep 17 00:00:00 2001 From: ermarch <50483426+ermarch@users.noreply.github.com> Date: Mon, 28 Jun 2021 11:26:05 +0200 Subject: [PATCH] Fix systems (#458) Do not set v ourselves, the caller does that. This fixes the second problem mentioned in issue #436 --- utils/aeromatic++/config.h | 2 +- utils/aeromatic++/types.cpp | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/utils/aeromatic++/config.h b/utils/aeromatic++/config.h index e39572af14..663b3197b6 100644 --- a/utils/aeromatic++/config.h +++ b/utils/aeromatic++/config.h @@ -1,5 +1,5 @@ /* versioning */ #define AEROMATIC_MAJOR_VERSION 3 #define AEROMATIC_MINOR_VERSION 3 -#define AEROMATIC_MICRO_VERSION 14 +#define AEROMATIC_MICRO_VERSION 15 diff --git a/utils/aeromatic++/types.cpp b/utils/aeromatic++/types.cpp index 0e28d8cf2c..3742fc1452 100644 --- a/utils/aeromatic++/types.cpp +++ b/utils/aeromatic++/types.cpp @@ -64,7 +64,6 @@ Param::Param(const char* n, const char *h, bool& v, const bool& c, unsigned t) _convert(c), _utype(t) { - v = false; _value.b = &v; }