FSFW Update #28

Merged
jgerhards merged 782 commits from fsfw_update into develop 2023-05-28 23:43:22 +02:00
616 changed files with 4251 additions and 3429 deletions
Showing only changes of commit c756297e5c - Show all commits

View File

@@ -36,9 +36,8 @@ struct DataWrapper {
} }
[[nodiscard]] bool isNull() const { [[nodiscard]] bool isNull() const {
if (type == DataTypes::RAW and dataUnion.raw.data == nullptr or if ((type == DataTypes::NONE) or (type == DataTypes::RAW and dataUnion.raw.data == nullptr) or
(type == DataTypes::SERIALIZABLE and dataUnion.serializable == nullptr) or (type == DataTypes::SERIALIZABLE and dataUnion.serializable == nullptr)) {
(type == DataTypes::NONE)) {
return true; return true;
} }
return false; return false;