From c8923288ce9d1883428b1510c43d0d92ba4a1a91 Mon Sep 17 00:00:00 2001 From: Max Luebke Date: Tue, 2 Apr 2024 11:32:44 +0000 Subject: [PATCH] Fix cell copy functionality in constructor --- poet/include/IPhreeqcPOET.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/poet/include/IPhreeqcPOET.hpp b/poet/include/IPhreeqcPOET.hpp index bcf7ebda..91365304 100644 --- a/poet/include/IPhreeqcPOET.hpp +++ b/poet/include/IPhreeqcPOET.hpp @@ -41,6 +41,7 @@ public: if (n_cells > 1) { std::string copy_string = "COPY cell 1 2-" + std::to_string(n_cells) + "\n"; + this->RunString(copy_string.c_str()); } }