mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 08:38:23 +01:00
Squashed 'phreeqcpp/' changes from e4c4cf3..587223f
587223f Extra check to not dump negative user numbers git-subtree-dir: phreeqcpp git-subtree-split: 587223f4d35ddca5105498f1f0ef31638f748562
This commit is contained in:
parent
2abb0b0bcd
commit
9a4caf7def
@ -1897,7 +1897,8 @@ namespace Utilities
|
|||||||
for (it = b.begin(); it != b.end(); ++it)
|
for (it = b.begin(); it != b.end(); ++it)
|
||||||
{
|
{
|
||||||
// Adding logic to dump only non-negative entities
|
// Adding logic to dump only non-negative entities
|
||||||
if (it->second.Get_n_user() >= 0)
|
//if (it->second.Get_n_user() >= 0)
|
||||||
|
if (it->first >= 0 && it->second.Get_n_user() >= 0)
|
||||||
{
|
{
|
||||||
it->second.dump_raw(s_oss, indent);
|
it->second.dump_raw(s_oss, indent);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user