seems like this should set the serializables to .get().setValid(valid) instead of true

This commit is contained in:
Michael Demke 2025-03-28 00:41:40 +01:00
parent 55b8d01b93
commit 40be8ebef5

View File

@ -91,7 +91,7 @@ class Dataset : public SerializeIF {
void setChildrenValidity(bool valid) {
for (auto &serializable : serializables) {
serializable.get().setValid(true);
serializable.get().setValid(valid);
}
}