virtual destructor for tdmdatatype, makefile: compile on Darwin

This commit is contained in:
Mario Fink
2021-01-22 12:24:55 +01:00
parent 1488aed089
commit 90253f819a
2 changed files with 13 additions and 3 deletions

View File

@@ -41,6 +41,7 @@ public:
tdmdatatype(): sint16_(0), sint32_(0),
uint8_(0), uint16_(0), uint32_(0),
float32_(0.0), float64_(0.0) {};
virtual ~tdmdatatype() = default;
friend std::ostream& operator<<(std::ostream& out, const tdmdatatype& num)
{
return num.print(out);