Merge branch 'ml/add-desctructor' into 'poet'

refactor: add default destructor for PhreeqcMatrix class

See merge request naaice/iphreeqc!16
This commit is contained in:
Marco De Lucia 2024-11-08 12:48:48 +01:00
commit b6f312f0d0

View File

@ -31,6 +31,14 @@ public:
*/
PhreeqcMatrix() = default;
/**
* @brief Destroy the Phreeqc Matrix object
*
* There is no special cleanup needed for PhreeqcMatrix, thus the default (and
* implicit) destructor is used.
*/
~PhreeqcMatrix() = default;
/**
* @brief Construct a new Phreeqc Matrix object
*