1
0
forked from fsfw/fsfw

some bugfixes

This commit is contained in:
2020-08-08 12:49:20 +02:00
parent a6a1e65607
commit f766398b20
5 changed files with 6 additions and 74 deletions

View File

@ -1,6 +1,6 @@
#ifndef FRAMEWORK_DATAPOOLLOCAL_STATICLOCALDATASET_H_
#define FRAMEWORK_DATAPOOLLOCAL_STATICLOCALDATASET_H_
#include <framework/datapool/PoolDataSetBase.h>
#include <framework/datapoollocal/LocalPoolDataSetBase.h>
#include <framework/objectmanager/SystemObjectIF.h>
#include <array>
@ -20,7 +20,7 @@ public:
LocalDataSetBase(owner, poolVarList.data(), NUM_VARIABLES) {
}
virtual~ StaticLocalDataSet();
virtual~ StaticLocalDataSet() {};
private:
std::array<PoolVariableIF*, NUM_VARIABLES> poolVarList;
};