validity buf generation set by ctor argument
This commit is contained in:
@ -45,9 +45,10 @@ class Dataset : public List {
|
||||
|
||||
class StaticTestDataset : public StaticSharedSet<3> {
|
||||
public:
|
||||
StaticTestDataset() : StaticSharedSet(lpool::testSid1) {}
|
||||
StaticTestDataset() : StaticSharedSet(lpool::testSid1, false) {}
|
||||
|
||||
StaticTestDataset(SharedPool& sharedPool, uint32_t setId) : StaticSharedSet(sharedPool, setId) {}
|
||||
StaticTestDataset(SharedPool& sharedPool, uint32_t setId)
|
||||
: StaticSharedSet(sharedPool, setId, false) {}
|
||||
|
||||
u8_t localPoolVarUint8{lpool::uint8VarGpid, this};
|
||||
f32_t localPoolVarFloat{lpool::floatVarGpid, this};
|
||||
@ -58,10 +59,10 @@ class StaticTestDataset : public StaticSharedSet<3> {
|
||||
|
||||
class TestDataset : public SharedSet {
|
||||
public:
|
||||
TestDataset() : SharedSet(lpool::testSid2, lpool::dataSetMaxVariables) {}
|
||||
TestDataset() : SharedSet(lpool::testSid2, lpool::dataSetMaxVariables, false) {}
|
||||
|
||||
TestDataset(SharedPool& sharedPool, uint32_t setId)
|
||||
: SharedSet(sharedPool, setId, lpool::dataSetMaxVariables) {}
|
||||
: SharedSet(sharedPool, setId, lpool::dataSetMaxVariables, false) {}
|
||||
|
||||
u8_t localPoolVarUint8{lpool::uint8VarGpid, this};
|
||||
f32_t localPoolVarFloat{lpool::floatVarGpid, this};
|
||||
|
Reference in New Issue
Block a user