1
0
forked from fsfw/fsfw

bool is mapped to uint8 now for pod type conversion

This commit is contained in:
2020-10-19 00:25:03 +02:00
parent 8b8324f21c
commit ad9ac7537e
3 changed files with 15 additions and 9 deletions

View File

@ -68,7 +68,7 @@ public:
template<typename T>
void set(const T *readonlyData, uint8_t rows, uint8_t columns) {
this->data = NULL;
this->data = nullptr;
this->readonlyData = readonlyData;
this->type = PodTypeConversion<T>::type;
this->rows = rows;