Added more generic element value serialization.
Build and Test Module / build-and-test (push) Successful in 7s Details
Build and Test Module / build-and-test-with-asdf-library (push) Failing after 11s Details

This commit is contained in:
Andrew Lalis 2026-06-15 15:53:49 -04:00
parent 2e131c5164
commit 12ff597f9d
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ struct Optional(T) {
if (this.isNull) {
serializer.putValue(null);
} else {
serializer.putValue(this.value);
serializeValue(serializer, this.value);
}
}
}