refactor: add default destructor for PhreeqcMatrix class

This commit is contained in:
Max Lübke 2024-11-08 12:46:59 +01:00
parent 61214a01ad
commit 969a4cbefd

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
*