Value apply array truncation in Delta format

This commit is contained in:
Michael Davidsaver
2020-03-23 21:35:11 -07:00
parent dff97c3fdf
commit 7a1ba5acc0
+1 -1
View File
@@ -39,7 +39,7 @@ struct FmtDelta {
case StoreType::Array: {
auto& varr = store->as<shared_array<const void>>();
if(varr.original_type()!=ArrayType::Value) {
strm<<" = "<<varr;
strm<<" = "<<varr.format().limit(fmt._limit);
}
}
break;