fixed: remove default constructor declaration

a class with a reference member cannot be default initialized,
so constructor is implicitly deleted. quells a clang warning
This commit is contained in:
Arne Morten Kvarving 2022-09-16 09:19:42 +02:00
parent 42ef6ed9de
commit c5fced81fa

View File

@ -38,9 +38,6 @@ class VFPProdTable;
*/ */
class VFPProperties { class VFPProperties {
public: public:
VFPProperties() = default;
/** /**
* Constructor * Constructor
* Takes *no* ownership of data. * Takes *no* ownership of data.